summaryrefslogtreecommitdiff
path: root/tools/zmqsend.c
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-12-05 10:04:57 -0800
committerTimothy Gu <timothygu99@gmail.com>2016-12-05 11:27:13 -0800
commitd903b4e3ad4a81b3dd79f12c2f3b9cb16e511173 (patch)
treeb4134dc50205d726a7592c1589af423f2fb5e372 /tools/zmqsend.c
parentb52d3574d466e745834d1283b55570dee1e2d4cd (diff)
zmqsend: Initialize ret to 0
Fixes CID1396857.
Diffstat (limited to 'tools/zmqsend.c')
-rw-r--r--tools/zmqsend.c2
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;