Skip to content

Commit

Permalink
Merge pull request open62541#6296 from open62541/1.4
Browse files Browse the repository at this point in the history
Merge 1.4 to master
  • Loading branch information
jpfr committed Feb 20, 2024
2 parents 9f0abab + 223905f commit 596150d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/ua_server_ns0_diagnostics.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ readSessionDiagnostics(UA_Server *server,
res = UA_Variant_setScalarCopy(&value->value, content, type);
} else {
size_t len = *(size_t*)content;
content = (void*)(((uintptr_t)content) + sizeof(size_t));
content = *(void**)((uintptr_t)content + sizeof(size_t));
res = UA_Variant_setArrayCopy(&value->value, content, len, type);
}
if(UA_LIKELY(res == UA_STATUSCODE_GOOD))
Expand Down

0 comments on commit 596150d

Please sign in to comment.