mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-27 16:07:15 -07:00
Use ast_strdupa instead of strdup in goto (bug #1465)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2735 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4373,7 +4373,7 @@ static int pbx_builtin_goto(struct ast_channel *chan, void *data)
|
||||
ast_log(LOG_WARNING, "Goto requires an argument (optional context|optional extension|priority)\n");
|
||||
return -1;
|
||||
}
|
||||
s = strdup((void *) data);
|
||||
s = ast_strdupa((void *) data);
|
||||
stringp=s;
|
||||
context = strsep(&stringp, "|");
|
||||
exten = strsep(&stringp, "|");
|
||||
@@ -4393,7 +4393,6 @@ static int pbx_builtin_goto(struct ast_channel *chan, void *data)
|
||||
}
|
||||
if (atoi(pri) < 0) {
|
||||
ast_log(LOG_WARNING, "Priority '%s' must be a number > 0\n", pri);
|
||||
free(s);
|
||||
return -1;
|
||||
}
|
||||
/* At this point we have a priority and maybe an extension and a context */
|
||||
|
||||
Reference in New Issue
Block a user