提交 d0b49f95 authored 作者: Nathan Neulinger's avatar Nathan Neulinger

mod_skinny: calloc param ordering 1214234

上级 bca7520a
......@@ -110,7 +110,7 @@ switch_status_t skinny_read_packet(listener_t *listener, skinny_message_t **req)
char *ptr;
switch_status_t status = SWITCH_STATUS_SUCCESS;
request = calloc(SKINNY_MESSAGE_MAXSIZE,1);
request = calloc(1,SKINNY_MESSAGE_MAXSIZE);
if (!request) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unable to allocate memory.\n");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论