diff mbox

[FFmpeg-devel,2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

Message ID 20170411171332.10758-2-klaxa1337@googlemail.com
State Superseded
Headers show

Commit Message

Stephan Holljes April 11, 2017, 5:13 p.m. UTC
---
 libavformat/tcp.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/libavformat/tcp.c b/libavformat/tcp.c
index 07b4ed9..f1a597d 100644
--- a/libavformat/tcp.c
+++ b/libavformat/tcp.c
@@ -203,8 +203,10 @@  static int tcp_accept(URLContext *s, URLContext **c)
         return ret;
     cc = (*c)->priv_data;
     ret = ff_accept(sc->fd, sc->listen_timeout, s);
-    if (ret < 0)
+    if (ret < 0) {
+        ffurl_close(*c);
         return ret;
+    }
     cc->fd = ret;
     return 0;
 }