]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSCORE-279 Prevent media setup on failed originates
authorMathieu Rene <mrene@avgs.ca>
Fri, 23 Jan 2009 14:16:34 +0000 (14:16 +0000)
committerMathieu Rene <mrene@avgs.ca>
Fri, 23 Jan 2009 14:16:34 +0000 (14:16 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11462 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_ivr_originate.c

index 5ca70516ea1efa3a5e6deb25f840c23b0399778b..d0c6e06b23d71ed3ada5f68ddd9038a2e63d8ceb 100644 (file)
@@ -2044,7 +2044,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
                switch_ivr_sleep(*bleg, 0, SWITCH_TRUE, NULL);
        }
 
-       if (oglobals.session) {
+       if (oglobals.session && status == SWITCH_STATUS_SUCCESS) {
                switch_ivr_sleep(oglobals.session, 0, SWITCH_TRUE, NULL);
        }