From: Alex Murkoff <413x1nkp@gmail.com> Date: Sun, 14 Apr 2024 13:44:12 +0000 (+0700) Subject: removed freeing of the ptr X-Git-Tag: v1.5.7^2~127^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4025%2Fhead;p=thirdparty%2Fzstd.git removed freeing of the ptr --- diff --git a/doc/educational_decoder/harness.c b/doc/educational_decoder/harness.c index eb79ceacd..12c5a801b 100644 --- a/doc/educational_decoder/harness.c +++ b/doc/educational_decoder/harness.c @@ -50,7 +50,6 @@ static buffer_s read_file(const char *path) fclose(f); buffer_s const b = { ptr, size }; - free(ptr); return b; }