diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-12-05 10:04:57 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-12-05 11:27:13 -0800 |
commit | d903b4e3ad4a81b3dd79f12c2f3b9cb16e511173 (patch) | |
tree | b4134dc50205d726a7592c1589af423f2fb5e372 /tools | |
parent | b52d3574d466e745834d1283b55570dee1e2d4cd (diff) | |
download | ffmpeg-d903b4e3ad4a81b3dd79f12c2f3b9cb16e511173.tar.gz |
zmqsend: Initialize ret to 0
Fixes CID1396857.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/zmqsend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/zmqsend.c b/tools/zmqsend.c index d47bf216b4..6148bd623c 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; |