diff options
Diffstat (limited to 'src/ipcpd')
| -rw-r--r-- | src/ipcpd/udp/main.c | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/src/ipcpd/udp/main.c b/src/ipcpd/udp/main.c index be7491f4..26f993ce 100644 --- a/src/ipcpd/udp/main.c +++ b/src/ipcpd/udp/main.c @@ -236,23 +236,21 @@ static int ipcp_udp_port_alloc_resp(uint32_t dst_ip_addr,                                      uint16_t dst_udp_port,                                      int      response)  { -        uint8_t *         buf;          struct mgmt_msg * msg;          int               ret; -        buf = malloc(sizeof(*msg)); -        if (buf == NULL) +        msg = malloc(sizeof(*msg)); +        if (msg == NULL)                  return -1; -        msg               = (struct mgmt_msg *) buf;          msg->code         = FLOW_REPLY;          msg->src_udp_port = src_udp_port;          msg->dst_udp_port = dst_udp_port;          msg->response     = response; -        ret = send_shim_udp_msg(buf, sizeof(*msg), dst_ip_addr); +        ret = send_shim_udp_msg((uint8_t *) msg, sizeof(*msg), dst_ip_addr); -        free(buf); +        free(msg);          return ret;  } | 
