fix healing revision op_tokenize (#536)

This commit is contained in:
jirik2077
2026-07-11 05:49:44 +02:00
committed by GitHub
parent cbbe2f00f1
commit feb0cd61ff
+1 -1
View File
@@ -313,7 +313,7 @@ void opTokenize(Program* program)
}
temp = (char*)internal_calloc_safe(1, length + 1, __FILE__, __LINE__); // "..\\int\\INTLIB.C, 230
strncpy(temp, start, length);
strncpy(temp, start + 1, length);
programStackPushString(program, temp);
} else {
programStackPushInteger(program, 0);