dect
/
asterisk
Archived
13
0
Fork 0

slight correction to options parsing

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7052 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2005-11-10 23:18:03 +00:00
parent dc51c798ce
commit d6e2d41e4e
2 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
* app.c (ast_app_parse_options): don't increment 's' until after checking for NULL (related to issue #5630)
* apps/app_rpt.c: solve a memory leak (config structure was not freed) (issue #5706
2005-11-10 Russell Bryant <russell@digium.com>
* app.c (ast_app_separate_args): Don't consider the open parenthesis as part of the arguments to an option.
* app.c (ast_app_separate_args): Don't consider the open parenthesis as part of the arguments to an option. (issue #5630)
* many files: Change all references to ast_separate_app_args to ast_app_separate_args
* many files in apps/: Clean up some application descriptions. Make sure all descriptions in changed files are wrapped at 80 characters.

2
app.c
View File

@ -1544,7 +1544,7 @@ int ast_app_parse_options(const struct ast_app_option *options, struct ast_flags
if (*s == '(') {
/* Has argument */
arg = ++s;
while (*++s && (*s != ')'));
while (*s && (*s++ != ')'));
if (*s) {
if (argloc)
args[argloc - 1] = arg;