mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Fix a crash due to too few arguments to RetryDial.
(closes issue #14852) Reported by: junky Patches: retry_fix.diff uploaded by junky (license 177) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@187135 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1872,7 +1872,7 @@ static int retrydial_exec(struct ast_channel *chan, void *data)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((dialdata = strchr(dialdata, '|'))) {
|
if (dialdata && (dialdata = strchr(dialdata, '|'))) {
|
||||||
*dialdata++ = '\0';
|
*dialdata++ = '\0';
|
||||||
} else {
|
} else {
|
||||||
ast_log(LOG_ERROR, "%s requires more arguments\n",rapp);
|
ast_log(LOG_ERROR, "%s requires more arguments\n",rapp);
|
||||||
|
Reference in New Issue
Block a user