]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
We have to release app_lock even if there is no channel logged in anymore
authorMark Spencer <markster@digium.com>
Wed, 27 Aug 2003 15:59:43 +0000 (15:59 +0000)
committerMark Spencer <markster@digium.com>
Wed, 27 Aug 2003 15:59:43 +0000 (15:59 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1442 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_agent.c

index 403dd266772226f7c9909e2e6df5e54489e4490c..1534f58c52947920f32e7d2c5eb00a46930506e2 100755 (executable)
@@ -264,6 +264,8 @@ static struct ast_frame  *agent_read(struct ast_channel *ast)
        if (!f) {
                /* If there's a channel, hang it up  (if it's on a callback) make it NULL */
                if (p->chan) {
+                       /* Note that we don't hangup if it's not a callback because Asterisk will do it
+                          for us when the PBX instance that called login finishes */
                        if (strlen(p->loginchan))
                                ast_hangup(p->chan);
                        p->chan = NULL;
@@ -500,12 +502,14 @@ static int agent_hangup(struct ast_channel *ast)
                p->abouttograb = 0;
        } else if (p->dead) {
                free(p);
-       } else if (p->chan) {
-               /* Not dead -- check availability now */
-               ast_mutex_lock(&p->lock);
-               /* Store last disconnect time */
-               gettimeofday(&p->lastdisc, NULL);
-               ast_mutex_unlock(&p->lock);
+       } else {
+               if (p->chan) {
+                       /* Not dead -- check availability now */
+                       ast_mutex_lock(&p->lock);
+                       /* Store last disconnect time */
+                       gettimeofday(&p->lastdisc, NULL);
+                       ast_mutex_unlock(&p->lock);
+               }
                /* Release ownership of the agent to other threads (presumably running the login app). */
                ast_mutex_unlock(&p->app_lock);
        }