]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
fix seg fault with combination of 'g' and # transfer (bug #3650)
authorRussell Bryant <russell@russellbryant.com>
Sun, 27 Feb 2005 01:40:43 +0000 (01:40 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sun, 27 Feb 2005 01:40:43 +0000 (01:40 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5094 65c4cc65-6c06-0410-ace0-fbb531ad65f3

CHANGES
apps/app_dial.c

diff --git a/CHANGES b/CHANGES
index 7e23db9904216754296553184e4b9f25c2a5193d..09e8040381d488baf5d7658d358b362954e353e6 100755 (executable)
--- a/CHANGES
+++ b/CHANGES
@@ -35,6 +35,7 @@ Asterisk 1.0.6
     -- DIALEDPEERNUMBER is now being set, so if you attempted to use it in the past and failed
        it should work now.
     -- A callerid change caused many headaches, this has been reversed to the original 1.0 behavior.
+    -- A crash caused with the combination of the 'g' option and # transfer was fixed.
  -- app_voicemail:
     -- If two people hit the voicemail system at the same time, and were leaving a message
        the second message was overwriting the first. This has been fixed so that each one
index 76ae6a5d494e10caf2241f23cc277ebde6712bea..8d3436edc72eddde60319f3f1284248846de7e91 100755 (executable)
@@ -1037,7 +1037,7 @@ out:
        
        LOCAL_USER_REMOVE(u);
        
-       if((go_on>0) && (!chan->_softhangup))
+       if((go_on>0) && (!chan->_softhangup) && (res != AST_PBX_KEEPALIVE))
            res=0;
            
        return res;