2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
+ * app.c (ast_app_parse_options): ok, so we aren't all perfect... let's make the while loop actually work properly here (issue #5684)
+
* apps/app_disa.c (disa_exec): correct password file parsing (issue #5676)
* apps/app_meetme.c (conf_run): don't restrict admin users from joining a locked conference (issue #5680)
if (*s == '(') {
/* Has argument */
arg = ++s;
- while (*s && (*s++ != ')'));
+ while (*s && (*s != ')'))
+ s++;
if (*s) {
if (argloc)
args[argloc - 1] = arg;