|
@@ -917,15 +917,18 @@ Variant_decodeBinary(bufpos pos, bufend end, UA_Variant *dst, const UA_DataType
|
|
|
|
|
|
|
|
|
dst->type = &UA_TYPES[UA_TYPES_EXTENSIONOBJECT];
|
|
|
- if(typeId.namespaceIndex == 0 && eo_encoding == UA_EXTENSIONOBJECT_ENCODED_BYTESTRING) {
|
|
|
+ if(typeId.namespaceIndex == 0 && typeId.identifierType == UA_NODEIDTYPE_NUMERIC &&
|
|
|
+ eo_encoding == UA_EXTENSIONOBJECT_ENCODED_BYTESTRING) {
|
|
|
+ UA_assert(typeId.identifier.byteString.data == NULL);
|
|
|
typeId.identifier.numeric -= UA_ENCODINGOFFSET_BINARY;
|
|
|
if(findDataType(&typeId, &dst->type) == UA_STATUSCODE_GOOD)
|
|
|
(*pos) += 4;
|
|
|
else
|
|
|
*pos = old_pos;
|
|
|
- } else
|
|
|
+ } else {
|
|
|
*pos = old_pos;
|
|
|
- UA_NodeId_deleteMembers(&typeId);
|
|
|
+ UA_NodeId_deleteMembers(&typeId);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
dst->data = UA_calloc(1, dst->type->memSize);
|