diff --git a/libavformat/ape.c b/libavformat/ape.c index 4079947439942c07ab2cd21eede36a6b3a7eeee7..d967a5d660e0a8a724822969bfb66edc40dfa9f5 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -260,7 +260,7 @@ static int ape_read_header(AVFormatContext * s) ape->totalframes); return -1; } - if (ape->seektablelength && (ape->seektablelength / sizeof(*ape->seektable)) < ape->totalframes) { + if (ape->seektablelength / sizeof(*ape->seektable) < ape->totalframes) { av_log(s, AV_LOG_ERROR, "Number of seek entries is less than number of frames: %zu vs. %"PRIu32"\n", ape->seektablelength / sizeof(*ape->seektable), ape->totalframes);