# HG changeset patch # User Edouard Tisserant # Date 1732319397 -3600 # Node ID 6975b486b07f3cfb7e67a4b839194d0d605734fe # Parent 2a4b8b59d1654bd9672a349a10e81c778c0cbfcb C runtime: fix ExtendedCall stub diff -r 2a4b8b59d165 -r 6975b486b07f C_runtime/PLCObject.cpp --- a/C_runtime/PLCObject.cpp Sat Nov 23 00:49:26 2024 +0100 +++ b/C_runtime/PLCObject.cpp Sat Nov 23 00:49:57 2024 +0100 @@ -679,7 +679,7 @@ { // TODO - answer->data = (uint8_t*)""; + answer->data = (uint8_t *)malloc(0); answer->dataLength = 0; return 0;