summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@chown.ath.cx>2016-10-04 02:41:45 +0200
committerGrigori Goronzy <greg@chown.ath.cx>2016-10-04 19:45:16 +0200
commit1ca16e18cb9421853e5523e19d3826d4ea252a64 (patch)
treec1ac905da6b720bad63425597ea818a1e0be71d9 /test
parentaa54e0b59200a994d50a346b5d7ac818ebcf2d4b (diff)
downloadlibass-1ca16e18cb9421853e5523e19d3826d4ea252a64.tar.bz2
libass-1ca16e18cb9421853e5523e19d3826d4ea252a64.tar.xz
Fix memory leaks
Found by fuzzer test case id:000051,sig:11,sync:fuzzer3,src:004221.
Diffstat (limited to 'test')
-rw-r--r--test/test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index 4884b28..6726fed 100644
--- a/test/test.c
+++ b/test/test.c
@@ -186,6 +186,7 @@ static void print_font_providers(ASS_Library *ass_library)
printf("%s'%s'", separator, font_provider_labels[providers[i]]);
}
printf(".\n");
+ free(providers);
}
int main(int argc, char *argv[])