From: Ralph Ronnquist Date: Thu, 11 Nov 2021 08:06:21 +0000 (+1100) Subject: bug fix X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=e69c1b55d384c0931aca7d58a88a402053ae6c18;p=rrq%2Ffuse_xattrs.git bug fix --- 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; }