From 039896ae2ba5e1f7e7f692dc0f5ba2e38c7b8453 Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Wed, 18 Mar 2026 18:09:46 +0200 Subject: [PATCH] fix new issue --- f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f.c b/f.c index 6b2b2cb..64d58e5 100644 --- a/f.c +++ b/f.c @@ -32,7 +32,7 @@ int f(void) free(malloc(64)); free(malloc(96)); free(malloc(128)); - malloc(256); + free(malloc(256)); return 1; }