From: Michael Jerris Date: Mon, 31 Mar 2008 16:04:06 +0000 (+0000) Subject: make argv big enough to handle all our options. X-Git-Tag: v1.0-rc2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=299d2692a42368a34768a39cca93dfda607b50e8;p=thirdparty%2Ffreeswitch.git make argv big enough to handle all our options. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7986 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_dptools/mod_dptools.c b/src/mod/applications/mod_dptools/mod_dptools.c index 8b3b35aa6c..d2cb470085 100644 --- a/src/mod/applications/mod_dptools/mod_dptools.c +++ b/src/mod/applications/mod_dptools/mod_dptools.c @@ -203,7 +203,7 @@ SWITCH_STANDARD_APP(send_dtmf_function) SWITCH_STANDARD_APP(check_acl_function) { int argc; - char *argv[2] = { 0 }; + char *argv[3] = { 0 }; char *mydata; switch_call_cause_t cause = SWITCH_CAUSE_CALL_REJECTED;