[FFmpeg-cvslog] ffmpeg: do not call exit from exit_program()
Michael Niedermayer
git at videolan.org
Wed Feb 6 04:15:07 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Feb 6 04:03:52 2013 +0100| [127ff88639e78b9d16fecb973c41b86a843b4fa7] | committer: Michael Niedermayer
ffmpeg: do not call exit from exit_program()
This should fix Ticket2116
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=127ff88639e78b9d16fecb973c41b86a843b4fa7
---
ffmpeg.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index bbd21b6..bda7610 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -481,7 +481,6 @@ static void exit_program(void)
if (received_sigterm) {
av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
(int) received_sigterm);
- exit (255);
}
}
@@ -3316,6 +3315,6 @@ int main(int argc, char **argv)
printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
}
- exit(0);
+ exit(received_nb_signals ? 255 : 0);
return 0;
}
More information about the ffmpeg-cvslog
mailing list