mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-04-21 18:00:25 +00:00
avformat/flacdec: fix self assign warning
This commit is contained in:
parent
afad332d77
commit
9034ca30ef
1 changed files with 3 additions and 3 deletions
|
|
@ -102,9 +102,9 @@ static int flac_read_header(AVFormatContext *s)
|
|||
return AVERROR(ENOMEM);
|
||||
}
|
||||
ret = ffio_read_size(s->pb, buffer, metadata_size);
|
||||
if (ret < 0) {
|
||||
RETURN_ERROR(ret);
|
||||
}
|
||||
if (ret < 0)
|
||||
goto fail;
|
||||
|
||||
break;
|
||||
/* skip metadata block for unsupported types */
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue