summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-06-01 02:27:36 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-06-01 08:47:25 -0400
commitf99e3292e7beb408e667478ce491e3d266c9d6d2 (patch)
tree996ce29b5d34b1b9026d801538e76684b37dc3c5 /tests
parentd6737c852204c5de6aac18792153f8d36e538205 (diff)
downloadopus-f99e3292e7beb408e667478ce491e3d266c9d6d2.tar.gz
Avoid an inconsequential memory leak in tests/test_opus_decode.c
Diffstat (limited to 'tests')
-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");