- fixed wrong check for empty itemId

v1.6_develop_rgoose_sntp
Michael Zillgith 3 years ago
parent 2d54b1c0c5
commit e48085b5f8

@ -3231,7 +3231,7 @@ IedConnection_deleteDataSetAsync(IedConnection self, IedClientError* error, cons
MmsError mmsError;
if ((domainId == NULL) || (itemId == NULL)) {
if ((domainId == NULL) || (itemId[0] == 0)) {
*error = IED_ERROR_OBJECT_REFERENCE_INVALID;
return 0;
}

Loading…
Cancel
Save