beremiz
Clone
Summary
Browse
Changes
Graph
C runtime: fix ExtendedCall stub
19 months ago, Edouard Tisserant
6975b486b07f
Parents
2a4b8b59d165
Children
808f7da43a4d
C runtime: fix ExtendedCall stub
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
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;