From c12ef64d699fb209f2474068368154e9fb9ecab0 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Fri, 28 Oct 2011 19:22:27 +0200 Subject: seek-test: free options dictionary after use --- libavformat/seek-test.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/seek-test.c') diff --git a/libavformat/seek-test.c b/libavformat/seek-test.c index 771036087a..363be8a88b 100644 --- a/libavformat/seek-test.c +++ b/libavformat/seek-test.c @@ -81,6 +81,7 @@ int main(int argc, char **argv) filename = argv[1]; ret = avformat_open_input(&ic, filename, NULL, &format_opts); + av_dict_free(&format_opts); if (ret < 0) { fprintf(stderr, "cannot open %s\n", filename); exit(1); -- cgit v1.2.3