forked from Mirrors/freeswitch
doh
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8291 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
8da11c524e
commit
c317b1936d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user