]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Mon, 26 May 2008 15:02:15 +0000 (15:02 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Mon, 26 May 2008 15:02:15 +0000 (15:02 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8660 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_java/freeswitch_java.cpp

index 6d7992daaee6730efb8dba0993371171d3572357..d8390b2ade747ed037492716aaa947fb676098bc 100644 (file)
@@ -215,7 +215,7 @@ switch_status_t JavaSession::run_dtmf_callback(void *input, switch_input_type_t
         const char *callbackResultUTF = env->GetStringUTFChars(callbackResult, NULL);
         if (callbackResultUTF)
         {
-            status = process_callback_result((char*) callbackResultUTF, &cb_state, session);
+            status = process_callback_result((char*) callbackResultUTF);
             env->ReleaseStringUTFChars(callbackResult, callbackResultUTF);
         }
         else
@@ -303,7 +303,7 @@ switch_status_t JavaSession::run_dtmf_callback(void *input, switch_input_type_t
         callbackResultUTF = env->GetStringUTFChars(callbackResult, NULL);
         if (callbackResultUTF)
         {
-            status = process_callback_result((char*) callbackResultUTF, &cb_state, session);
+            status = process_callback_result((char*) callbackResultUTF);
             env->ReleaseStringUTFChars(callbackResult, callbackResultUTF);
         }
         else