mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 12:54:56 +00:00
Use stat to determine whether the file exists or not. (issue #10038 reported by Mike Anikienko)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@71158 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -242,7 +242,8 @@ static enum agi_result launch_script(char *script, char *argv[], int *fds, int *
|
|||||||
int x;
|
int x;
|
||||||
int res;
|
int res;
|
||||||
sigset_t signal_set, old_set;
|
sigset_t signal_set, old_set;
|
||||||
|
struct stat st;
|
||||||
|
|
||||||
if (!strncasecmp(script, "agi://", 6))
|
if (!strncasecmp(script, "agi://", 6))
|
||||||
return launch_netscript(script, argv, fds, efd, opid);
|
return launch_netscript(script, argv, fds, efd, opid);
|
||||||
|
|
||||||
@@ -252,7 +253,7 @@ static enum agi_result launch_script(char *script, char *argv[], int *fds, int *
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Before even trying let's see if the file actually exists */
|
/* Before even trying let's see if the file actually exists */
|
||||||
if (!ast_fileexists(script, NULL, NULL)) {
|
if (stat(script, &st)) {
|
||||||
ast_log(LOG_WARNING, "Failed to execute '%s': File does not exist.\n", script);
|
ast_log(LOG_WARNING, "Failed to execute '%s': File does not exist.\n", script);
|
||||||
return AGI_RESULT_NOTFOUND;
|
return AGI_RESULT_NOTFOUND;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user