Commit eaff7769 authored by Robert Schmidt's avatar Robert Schmidt

Correct malloc in proto_agent_async_channel_info

parent 44b29d04
......@@ -39,7 +39,7 @@ proto_agent_async_channel_info(mod_id_t mod_id, const char *bind_ip, uint16_t bi
const char* peer_ip, uint16_t peer_port)
{
proto_agent_async_channel_t *channel;
channel = malloc(sizeof(proto_agent_channel_t));
channel = malloc(sizeof(proto_agent_async_channel_t));
if (channel == NULL)
goto error;
......
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