From e1136de5bf1b1ad0343bc9e3cd2a078cbdb0cd50 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Wed, 4 Feb 2009 17:42:01 +0000 Subject: [PATCH] Merged revisions 173393 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r173393 | mmichelson | 2009-02-04 11:41:02 -0600 (Wed, 04 Feb 2009) | 11 lines 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: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@173394 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_chanspy.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index 54960281f1..c9dc6f541a 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -274,8 +274,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 */