[Asterisk-cvs] asterisk app.c,1.31.2.3,1.31.2.4

russell at lists.digium.com russell at lists.digium.com
Tue Jun 14 17:06:15 CDT 2005


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv12980

Modified Files:
      Tag: v1-0
	app.c 
Log Message:
remove pointless dereference (bug #4353)


Index: app.c
===================================================================
RCS file: /usr/cvsroot/asterisk/app.c,v
retrieving revision 1.31.2.3
retrieving revision 1.31.2.4
diff -u -d -r1.31.2.3 -r1.31.2.4
--- app.c	14 Jun 2005 18:41:48 -0000	1.31.2.3
+++ app.c	14 Jun 2005 21:07:48 -0000	1.31.2.4
@@ -278,7 +278,7 @@
 	if (!res) {
 		res = ast_waitfor(chan,100);
 		if (res > -1) {
-			for (ptr=digits;*ptr;*ptr++) {
+			for (ptr=digits; *ptr; ptr++) {
 				if (*ptr == 'w') {
 					res = ast_safe_sleep(chan, 500);
 					if (res) 




More information about the svn-commits mailing list