aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-04 17:41:02 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-04 17:41:02 +0000
commit009cddba581c38d0f13e6a5ad2b03076f2589671 (patch)
tree3c64568112a33d148d99b3625d72fa447a3407fe /apps
parent46b019ae0903c5a98bea28498dcc6d2310ed62c1 (diff)
Merged revisions 173392 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r173392 | mmichelson | 2009-02-04 11:40:29 -0600 (Wed, 04 Feb 2009) | 3 lines Add a missing unlock. Extremely unlikely to ever matter, but it's needed. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@173393 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_chanspy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c
index f537875bc..f21a051a3 100644
--- a/apps/app_chanspy.c
+++ b/apps/app_chanspy.c
@@ -456,8 +456,10 @@ static int channel_spy(struct ast_channel *chan, struct chanspy_ds *spyee_chansp
}
ast_mutex_unlock(&spyee_chanspy_ds->lock);
- if (!spyee)
+ if (!spyee) {
+ ast_channel_unlock(spyee);
return 0;
+ }
/* We now hold the channel lock on spyee */