[FFmpeg-cvslog] zmqsend: Initialize ret to 0

Timothy Gu git at videolan.org
Mon Dec 5 23:30:09 EET 2016


ffmpeg | branch: release/3.0 | Timothy Gu <timothygu99 at gmail.com> | Mon Dec  5 10:04:57 2016 -0800| [9c0b2b9d5b5515d85b6cd2e4e580617fe780e0ae] | committer: Michael Niedermayer

zmqsend: Initialize ret to 0

Fixes CID1396857.

(cherry picked from commit d903b4e3ad4a81b3dd79f12c2f3b9cb16e511173)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 tools/zmqsend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/zmqsend.c b/tools/zmqsend.c
index d47bf21..6148bd6 100644
--- a/tools/zmqsend.c
+++ b/tools/zmqsend.c
@@ -53,7 +53,7 @@ int main(int argc, char **argv)
 {
     AVBPrint src;
     char c, *src_buf, *recv_buf;
-    int recv_buf_size, ret;
+    int recv_buf_size, ret = 0;
     void *zmq_ctx, *socket;
     const char *bind_address = "tcp://localhost:5555";
     const char *infilename = NULL;



More information about the ffmpeg-cvslog mailing list