From: Yann Collet Date: Thu, 8 Jun 2017 22:04:55 +0000 (-0700) Subject: fixed minor scan-build warning X-Git-Tag: upstream/1.9.3~11^2~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0beaa356f26aa5ee9d37673a5e72d8bc751f69c2;p=platform%2Fupstream%2Flz4.git fixed minor scan-build warning --- diff --git a/examples/simple_buffer.c b/examples/simple_buffer.c index ee29148..403d9e8 100644 --- a/examples/simple_buffer.c +++ b/examples/simple_buffer.c @@ -75,6 +75,7 @@ int main(void) { // where the regen_buffer memory location is, and how large regen_buffer (uncompressed) output will be. // Again, save the return_value. const int decompressed_size = LZ4_decompress_safe(compressed_data, regen_buffer, compressed_data_size, src_size); + free(compressed_data); /* no longer useful */ if (decompressed_size < 0) run_screaming("A negative result from LZ4_decompress_safe indicates a failure trying to decompress the data. See exit code (echo $?) for value returned.", decompressed_size); if (decompressed_size == 0)