ffmpeg | branch: master | Diego Biurrun <di...@biurrun.de> | Fri Dec 11 19:52:36 2015 +0100| [b8cd7a3c8df2c3aac8d7a0b5a02d83caf61bd769] | committer: Diego Biurrun
dvbsub: Check for errors from system() libavcodec/dvbsubdec.c:145:5: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] libavcodec/dvbsubdec.c:148:5: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b8cd7a3c8df2c3aac8d7a0b5a02d83caf61bd769 --- libavcodec/dvbsubdec.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index ccdfc01..e512b97 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec.c @@ -84,10 +84,16 @@ static void png_save(const char *filename, uint32_t *bitmap, int w, int h) fclose(f); snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename); - system(command); + if (system(command) != 0) { + printf("Error running pnmtopng\n"); + return; + } snprintf(command, sizeof(command), "rm %s %s", fname, fname2); - system(command); + if (system(command) != 0) { + printf("Error removing %s and %s\n", fname, fname2); + return; + } } #endif _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog