[FFmpeg-devel] [PATCH] avformat/rtsp: fix leak of options dict on error
Marvin Scholz
epirat07 at gmail.com
Tue Jul 8 21:15:32 EEST 2025
Fix CID 1655306
---
libavformat/rtsp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 8d360b375f..0810c56a8b 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1847,6 +1847,7 @@ redirect:
/* GET requests */
if (ffurl_alloc(&rt->rtsp_hd, httpname, AVIO_FLAG_READ,
&s->interrupt_callback) < 0) {
+ av_dict_free(&options);
err = AVERROR(EIO);
goto fail;
}
@@ -1863,6 +1864,7 @@ redirect:
if (!rt->rtsp_hd->protocol_whitelist && s->protocol_whitelist) {
rt->rtsp_hd->protocol_whitelist = av_strdup(s->protocol_whitelist);
if (!rt->rtsp_hd->protocol_whitelist) {
+ av_dict_free(&options);
err = AVERROR(ENOMEM);
goto fail;
}
@@ -1878,6 +1880,7 @@ redirect:
/* POST requests */
if (ffurl_alloc(&rt->rtsp_hd_out, httpname, AVIO_FLAG_WRITE,
&s->interrupt_callback) < 0 ) {
+ av_dict_free(&options);
err = AVERROR(EIO);
goto fail;
}
--
2.39.5 (Apple Git-154)
More information about the ffmpeg-devel
mailing list