From 4a763725fe35a9a46fd6f128265012093ca9eae2 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 22 Feb 2025 16:52:12 +0300 Subject: [PATCH] Add free() to bindiff.c --- src/test/bindiff.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/bindiff.c b/src/test/bindiff.c index eb694c1d..816128e0 100644 --- a/src/test/bindiff.c +++ b/src/test/bindiff.c @@ -173,5 +173,7 @@ int main(int narg, char *args[]) { fprintf(stderr, "Files are equal\n"); } + free(buf1); + free(buf2); return 0; }