Commit 9a9bfb64 authored by hitstergtd's avatar hitstergtd

Problem: test_udp does not release resources properly

Solution:
- call zmq_msg_close() if there is an error
- call free() to release resources if there is an error (CWE-404)
parent c354e0b3
......@@ -57,8 +57,10 @@ int msg_recv_cmp (zmq_msg_t *msg_, void *s_, const char* group_, const char* bod
return -1;
int recv_rc = zmq_msg_recv (msg_, s_, 0);
if (recv_rc == -1)
if (recv_rc == -1) {
zmq_msg_close(msg_);
return -1;
}
if (strcmp (zmq_msg_group (msg_), group_) != 0)
{
......@@ -73,6 +75,7 @@ int msg_recv_cmp (zmq_msg_t *msg_, void *s_, const char* group_, const char* bod
if (strcmp (body, body_) != 0)
{
zmq_msg_close (msg_);
free(body);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment