From bd828b76a922076bc3ff1823572c2410ea4fd685 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 6 Apr 2009 21:01:14 +0000 Subject: [PATCH] null out pointer on failed read lock git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12925 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_loopback/mod_loopback.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod/endpoints/mod_loopback/mod_loopback.c b/src/mod/endpoints/mod_loopback/mod_loopback.c index 21dcbf1aa8..f3d6809097 100644 --- a/src/mod/endpoints/mod_loopback/mod_loopback.c +++ b/src/mod/endpoints/mod_loopback/mod_loopback.c @@ -267,6 +267,7 @@ static switch_status_t channel_on_init(switch_core_session_t *session) if (tech_pvt->other_session) { if (switch_core_session_read_lock(tech_pvt->other_session) != SWITCH_STATUS_SUCCESS) { + tech_pvt->other_session = NULL; switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER); goto end; }