- fixed object reference string buffer size in iec61850_client_example2

pull/179/head
Michael Zillgith 6 years ago
parent 0d025800b4
commit 486c46229f

@ -38,7 +38,7 @@ printDataDirectory(char* doRef, IedConnection con, int spaces)
dataAttribute = LinkedList_getNext(dataAttribute); dataAttribute = LinkedList_getNext(dataAttribute);
char daRef[129]; char daRef[130];
sprintf(daRef, "%s.%s", doRef, daName); sprintf(daRef, "%s.%s", doRef, daName);
printDataDirectory(daRef, con, spaces + 2); printDataDirectory(daRef, con, spaces + 2);
} }

Loading…
Cancel
Save