all repos — hex @ f8dc6a88e7b96f20edf6e7259dda282c8e18f8f3

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

Fixes.
Fabio Cevasco h3rald@h3rald.com
Tue, 31 Dec 2024 21:40:27 +0100
commit

f8dc6a88e7b96f20edf6e7259dda282c8e18f8f3

parent

33954431bee2deb0a5e198976afdeac03c89e41a

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

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

@@ -9,7 +9,7 @@

// Free a token void hex_free_token(hex_token_t *token) { - if (token == NULL) + if (token == NULL || token->value == NULL) return; free(token->value); token->value = NULL;