From: Anthony Minessale Date: Tue, 23 Mar 2010 15:27:13 +0000 (+0000) Subject: FSCORE-577 X-Git-Tag: v1.0.6~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d05a502a5d11d0b3993ea73e3ee530d7b288df4;p=thirdparty%2Ffreeswitch.git FSCORE-577 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17074 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_ivr.c b/src/switch_ivr.c index 1e9e8e4877..a12bd0e9ee 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -626,20 +626,20 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_parse_event(switch_core_session_t *se switch_channel_clear_flag_recursive(channel, CF_EVENT_LOCK_PRI); } - return status; + return switch_channel_test_flag(channel, CF_BREAK) ? SWITCH_STATUS_BREAK : status; } SWITCH_DECLARE(switch_status_t) switch_ivr_parse_next_event(switch_core_session_t *session) { switch_event_t *event; + switch_status_t status = SWITCH_STATUS_FALSE; if (switch_core_session_dequeue_private_event(session, &event) == SWITCH_STATUS_SUCCESS) { - switch_ivr_parse_event(session, event); + status = switch_ivr_parse_event(session, event); switch_event_fire(&event); - return SWITCH_STATUS_SUCCESS; } - return SWITCH_STATUS_FALSE; + return status; }