all repos — hex @ f8c6032a533fbd67eda86d11d50b63485789fa1e

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Removed print statement.
h3rald h3rald@h3rald.com
Thu, 26 Dec 2024 09:38:43 +0000
commit

f8c6032a533fbd67eda86d11d50b63485789fa1e

parent

8069a6f44da335242b49fc012ac5505cc5ebbd33

1 files changed, 0 insertions(+), 1 deletions(-)

jump to
M src/stack.csrc/stack.c

@@ -176,7 +176,6 @@ {

case HEX_TYPE_STRING: if (item.data.str_value) { - printf("Freeing: %s\n", item.data.str_value); free(item.data.str_value); item.data.str_value = NULL; // Prevent double free }