提交 82250820 authored 作者: Mathieu Rene's avatar Mathieu Rene

mod_lcr: fix possible null string passed to switch_log_printf

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14514 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 4026a81a
......@@ -1191,7 +1191,8 @@ SWITCH_STANDARD_APP(lcr_app_function)
routes.pool = pool;
intra = switch_channel_get_variable(channel, "intrastate");
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "intrastate channel var is [%s]\n", intra);
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "intrastate channel var is [%s]\n",
switch_strlen_zero(intra) ? "undef" : intra);
if (switch_strlen_zero(intra) || strcasecmp((char *)intra, "true")) {
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Select routes based on interstate rates\n");
routes.intrastate = SWITCH_FALSE;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论