Skip to content
Snippets Groups Projects
Commit d387ca77 authored by Mark Spencer's avatar Mark Spencer
Browse files

Handle mpg123 failures without leaking fd's

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1692 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent fa45f2e6
No related branches found
No related tags found
No related merge requests found
......@@ -163,6 +163,8 @@ static int spawn_mp3(struct mohclass *class)
#endif
if (!files) {
ast_log(LOG_WARNING, "Found no files in '%s'\n", class->dir);
close(fds[0]);
close(fds[1]);
return -1;
}
class->pid = fork();
......@@ -189,6 +191,7 @@ static int spawn_mp3(struct mohclass *class)
/* Check PATH as a last-ditch effort */
execvp("mpg123", argv);
ast_log(LOG_WARNING, "Exec failed: %s\n", strerror(errno));
close(fds[1]);
exit(1);
} else {
/* Parent */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment