aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-20 20:00:49 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-20 20:00:49 +0000
commit8081e2fdb098299152d631afb68b64c2088dd09b (patch)
tree50e86939fb7f5cecbcfd8467cb8a50a93caeb472 /channel.c
parentebcfde022fe2d8f9dfd20a3807bd2cdf281c42c5 (diff)
Fix minor ordering issue (bug #981)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2206 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index ef966d21b..8a156df96 100755
--- a/channel.c
+++ b/channel.c
@@ -630,8 +630,8 @@ int ast_hangup(struct ast_channel *chan)
/* If this channel is one which will be masqueraded into something,
mark it as a zombie already, so we know to free it later */
if (chan->masqr) {
- ast_mutex_unlock(&chan->lock);
chan->zombie=1;
+ ast_mutex_unlock(&chan->lock);
return 0;
}
free_translation(chan);