提交 c317b193 authored 作者: Anthony Minessale's avatar Anthony Minessale

doh

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8291 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 8da11c52
......@@ -311,6 +311,12 @@ int perl_thread(const char *text)
}
SWITCH_STANDARD_API(perlrun_api_function) {
if (switch_strlen_zero(cmd)) {
stream->write_function(stream, "-ERR Missing args.\n");
return SWITCH_STATUS_SUCCESS;
}
perl_thread(cmd);
stream->write_function(stream, "+OK\n");
return SWITCH_STATUS_SUCCESS;
......@@ -319,6 +325,12 @@ SWITCH_STANDARD_API(perlrun_api_function) {
SWITCH_STANDARD_API(perl_api_function) {
struct perl_o po = { 0 };
if (switch_strlen_zero(cmd)) {
stream->write_function(stream, "-ERR Missing args.\n");
return SWITCH_STATUS_SUCCESS;
}
po.cmd = strdup(cmd);
po.stream = stream;
po.session = session;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论