[Asterisk-cvs] asterisk app.c,1.59,1.60
kpfleming at lists.digium.com
kpfleming at lists.digium.com
Wed May 4 11:19:02 CDT 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv14681
Modified Files:
app.c
Log Message:
fix obvious fault in ast_separate_app_args
Index: app.c
===================================================================
RCS file: /usr/cvsroot/asterisk/app.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- app.c 4 May 2005 03:43:10 -0000 1.59
+++ app.c 4 May 2005 15:26:03 -0000 1.60
@@ -1090,7 +1090,8 @@
break;
}
- array[x++] = scan;
+ if (scan)
+ array[x++] = scan;
return x;
}
More information about the svn-commits
mailing list