[FFmpeg-cvslog] avformat/udp: check for memory allocation failure when setting localaddr

jackarain git at videolan.org
Thu Mar 9 01:44:35 EET 2023


ffmpeg | branch: master | jackarain <jack.wgm at gmail.com> | Fri Mar  3 20:31:39 2023 +0800| [05ea0457fc50555287ecc2e304bc42dd0e05481b] | committer: Marton Balint

avformat/udp: check for memory allocation failure when setting localaddr

Signed-off-by: jackarain <jack.wgm at gmail.com>
Signed-off-by: Marton Balint <cus at passwd.hu>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=05ea0457fc50555287ecc2e304bc42dd0e05481b
---

 libavformat/udp.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavformat/udp.c b/libavformat/udp.c
index e8980b29d8..909213a467 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -740,6 +740,10 @@ static int udp_open(URLContext *h, const char *uri, int flags)
         if (av_find_info_tag(buf, sizeof(buf), "localaddr", p)) {
             av_freep(&s->localaddr);
             s->localaddr = av_strdup(buf);
+            if (!s->localaddr) {
+                ret = AVERROR(ENOMEM);
+                goto fail;
+            }
         }
         if (av_find_info_tag(buf, sizeof(buf), "sources", p)) {
             if ((ret = ff_ip_parse_sources(h, buf, &s->filters)) < 0)



More information about the ffmpeg-cvslog mailing list