[Asterisk-cvs] asterisk/apps app_dial.c,1.94.2.5,1.94.2.6
russell at lists.digium.com
russell at lists.digium.com
Sat Feb 26 19:42:55 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv3046/apps
Modified Files:
Tag: v1-0
app_dial.c
Log Message:
fix seg fault with combination of 'g' and # transfer (bug #3650)
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.94.2.5
retrieving revision 1.94.2.6
diff -u -d -r1.94.2.5 -r1.94.2.6
--- app_dial.c 9 Feb 2005 22:53:30 -0000 1.94.2.5
+++ app_dial.c 27 Feb 2005 01:40:43 -0000 1.94.2.6
@@ -1037,7 +1037,7 @@
LOCAL_USER_REMOVE(u);
- if((go_on>0) && (!chan->_softhangup))
+ if((go_on>0) && (!chan->_softhangup) && (res != AST_PBX_KEEPALIVE))
res=0;
return res;
More information about the svn-commits
mailing list