]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSCORE-577
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 23 Mar 2010 15:27:13 +0000 (15:27 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 23 Mar 2010 15:27:13 +0000 (15:27 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17074 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_ivr.c

index 1e9e8e48770359c3f1f794743ba4c458a53af850..a12bd0e9eeb1ef7d0b480691b3c6036d56df3ee7 100644 (file)
@@ -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;
 
 }