You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
libavcodec/dvdsubdec: remove exit() call in debug code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -471,7 +471,7 @@ static void ppm_save(const char *filename, uint8_t *bitmap, int w, int h,
|
|||||||
f = fopen(filename, "w");
|
f = fopen(filename, "w");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
perror(filename);
|
perror(filename);
|
||||||
exit(1);
|
return;
|
||||||
}
|
}
|
||||||
fprintf(f, "P6\n"
|
fprintf(f, "P6\n"
|
||||||
"%d %d\n"
|
"%d %d\n"
|
||||||
|
Reference in New Issue
Block a user