mirror of https://git.ffmpeg.org/ffmpeg.git
tiff: set the correct return value when check_size() fails
Only one instance affected and solved as other occurences.
This commit is contained in:
parent
3c27275c13
commit
10d4c5e55e
|
@ -319,8 +319,10 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||
s->buf = &ptr;
|
||||
s->buf_size = pkt->size;
|
||||
|
||||
if (check_size(s, 8))
|
||||
if (check_size(s, 8)) {
|
||||
ret = AVERROR(EINVAL);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
// write header
|
||||
bytestream_put_le16(&ptr, 0x4949);
|
||||
|
|
Loading…
Reference in New Issue