Fix silly warning
This commit is contained in:
parent
fda6e896e2
commit
cc2efd5597
|
@ -251,12 +251,14 @@ SWITCH_DECLARE(const char *) API::executeString(const char *cmd)
|
|||
{
|
||||
char *arg;
|
||||
switch_stream_handle_t stream = { 0 };
|
||||
char *mycmd = strdup(cmd);
|
||||
|
||||
switch_assert(mycmd);
|
||||
char *mycmd = NULL;
|
||||
|
||||
this_check("");
|
||||
|
||||
mycmd = strdup(cmd);
|
||||
|
||||
switch_assert(mycmd);
|
||||
|
||||
if ((arg = strchr(mycmd, ' '))) {
|
||||
*arg++ = '\0';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue