[FFmpeg-cvslog] fate/imf: fix memory leak
Pierre-Anthony Lemieux
git at videolan.org
Fri May 19 06:07:18 EEST 2023
ffmpeg | branch: master | Pierre-Anthony Lemieux <pal at palemieux.com> | Mon May 15 11:29:45 2023 -0700| [dbe43bca25b84f2c2f5f713eeff5ab2dae89fc25] | committer: Pierre-Anthony Lemieux
fate/imf: fix memory leak
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbe43bca25b84f2c2f5f713eeff5ab2dae89fc25
---
libavformat/tests/imf.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/libavformat/tests/imf.c b/libavformat/tests/imf.c
index cfd84fb8c8..c02cd87ceb 100644
--- a/libavformat/tests/imf.c
+++ b/libavformat/tests/imf.c
@@ -402,6 +402,9 @@ static int test_bad_cpl_parsing(FFIMFCPL **cpl)
return ret;
}
+ ff_imf_cpl_free(*cpl);
+ *cpl = NULL;
+
return 0;
}
@@ -423,6 +426,9 @@ static int test_bad_resource_cpl_parsing(FFIMFCPL **cpl)
return ret;
}
+ ff_imf_cpl_free(*cpl);
+ *cpl = NULL;
+
return 0;
}
@@ -594,8 +600,11 @@ int main(int argc, char *argv[])
printf("#### End failing test ####\n");
printf("#### The following should emit errors ####\n");
- if (test_bad_resource_cpl_parsing(&cpl) != 0)
+ if (test_bad_resource_cpl_parsing(&cpl) != 0) {
+ if (cpl)
+ printf("Improper cleanup after failed CPL parsing\n");
ret = 1;
+ }
printf("#### End emission of errors ####\n");
return ret;
More information about the ffmpeg-cvslog
mailing list