mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Cosmetics: Improve 'too short LIST' error message in wav.c.
This commit is contained in:
parent
a8e93ce4cb
commit
7862bd3d4a
@ -508,7 +508,7 @@ static int wav_read_header(AVFormatContext *s,
|
||||
case MKTAG('L', 'I', 'S', 'T'):
|
||||
list_type = avio_rl32(pb);
|
||||
if (size < 4) {
|
||||
av_log(s, AV_LOG_ERROR, "too short LIST");
|
||||
av_log(s, AV_LOG_ERROR, "too short LIST tag\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
switch (list_type) {
|
||||
|
Loading…
Reference in New Issue
Block a user