mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
lavc/gifdec: simplify "!= 0" checks
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
f1412c7997
commit
aaebdce3d9
@ -338,7 +338,7 @@ static int gif_read_extension(GifState *s)
|
|||||||
|
|
||||||
/* NOTE: many extension blocks can come after */
|
/* NOTE: many extension blocks can come after */
|
||||||
discard_ext:
|
discard_ext:
|
||||||
while (ext_len != 0) {
|
while (ext_len) {
|
||||||
/* There must be at least ext_len bytes and 1 for next block size byte. */
|
/* There must be at least ext_len bytes and 1 for next block size byte. */
|
||||||
if (bytestream2_get_bytes_left(&s->gb) < ext_len + 1)
|
if (bytestream2_get_bytes_left(&s->gb) < ext_len + 1)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
@ -362,8 +362,8 @@ static int gif_read_header1(GifState *s)
|
|||||||
|
|
||||||
/* read gif signature */
|
/* read gif signature */
|
||||||
bytestream2_get_bufferu(&s->gb, sig, 6);
|
bytestream2_get_bufferu(&s->gb, sig, 6);
|
||||||
if (memcmp(sig, gif87a_sig, 6) != 0 &&
|
if (memcmp(sig, gif87a_sig, 6) &&
|
||||||
memcmp(sig, gif89a_sig, 6) != 0)
|
memcmp(sig, gif89a_sig, 6))
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
/* read screen header */
|
/* read screen header */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user