summaryrefslogtreecommitdiff
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-22 22:48:59 +0000
committerMark Spencer <markster@digium.com>2004-03-22 22:48:59 +0000
commit67af82457efe06c7cf6d043ac56db2f8f1ff4d44 (patch)
tree94c4619b7e2101789155db02fe509db80f4a5999 /channels/chan_zap.c
parent2a16a0a30ca6cd36a57e6a2cf32de946f822b7c4 (diff)
Fix locks that are held too long
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2527 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_zap.c')
-rwxr-xr-xchannels/chan_zap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 9d6809751..cf860365f 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -2325,8 +2325,11 @@ static int zt_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags,
oi2 = zt_get_index(c1, p1, 0);
oc1 = p0->owner;
oc2 = p1->owner;
- if ((oi1 < 0) || (oi2 < 0))
+ if ((oi1 < 0) || (oi2 < 0)) {
+ ast_mutex_unlock(&c0->lock);
+ ast_mutex_unlock(&c1->lock);
return -1;
+ }