Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-06-01 10:27:36 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-06-01 16:47:25 +0400
commitf99e3292e7beb408e667478ce491e3d266c9d6d2 (patch)
tree996ce29b5d34b1b9026d801538e76684b37dc3c5
parentd6737c852204c5de6aac18792153f8d36e538205 (diff)
Avoid an inconsequential memory leak in tests/test_opus_decode.c
-rw-r--r--tests/test_opus_decode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_opus_decode.c b/tests/test_opus_decode.c
index ed718a54..50c16f84 100644
--- a/tests/test_opus_decode.c
+++ b/tests/test_opus_decode.c
@@ -329,6 +329,7 @@ int test_decoder_code0(int no_fuzz)
fprintf(stdout," dec[%3d] pre-selected random packets OK.\n",t);
}
+ free(decbak);
for(t=0;t<5*2;t++)opus_decoder_destroy(dec[t]);
printf(" Decoders stopped.\n");