You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
tiffenc: fix return value.
This commit is contained in:
@@ -463,7 +463,7 @@ fail:
|
||||
av_free(strip_sizes);
|
||||
av_free(strip_offsets);
|
||||
av_free(yuv_line);
|
||||
return ret;
|
||||
return ret < 0 ? ret : 0;
|
||||
}
|
||||
|
||||
#define OFFSET(x) offsetof(TiffEncoderContext, x)
|
||||
|
Reference in New Issue
Block a user