From e69c1b55d384c0931aca7d58a88a402053ae6c18 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Thu, 11 Nov 2021 19:06:21 +1100 Subject: [PATCH] bug fix --- binary_storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binary_storage.c b/binary_storage.c index 0a4321e..0f02891 100644 --- a/binary_storage.c +++ b/binary_storage.c @@ -118,7 +118,7 @@ char *__read_file_sidecar(const char *path, int *buffer_size) debug_print("path=%s sidecar_path=%s\n", path, sidecar_path); char *buffer = __read_file(sidecar_path, buffer_size); - free (sidecar_path); + strfree (sidecar_path); return buffer; } -- 2.39.2