Fixed BACNET_APPLICATION_DATA_VALUE declarations to be initialized so that the next pointer is NULL by default. (#814)
This commit is contained in:
+1
-1
@@ -2584,7 +2584,7 @@ static int bacapp_snprintf_weeklyschedule(
|
||||
int ret_val = 0;
|
||||
int wi, ti;
|
||||
BACNET_OBJECT_PROPERTY_VALUE dummyPropValue;
|
||||
BACNET_APPLICATION_DATA_VALUE dummyDataValue;
|
||||
BACNET_APPLICATION_DATA_VALUE dummyDataValue = { 0 };
|
||||
|
||||
const char *weekdaynames[7] = { "Mon", "Tue", "Wed", "Thu",
|
||||
"Fri", "Sat", "Sun" };
|
||||
|
||||
Reference in New Issue
Block a user