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) 

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to