Commit 92106387 authored by Anton Khirnov's avatar Anton Khirnov

apetag: change a forgotten return to return 0

parent f2ed006c
......@@ -159,7 +159,7 @@ int64_t ff_ape_parse_tag(AVFormatContext *s)
val = avio_rl32(pb); /* flags */
if (val & APE_TAG_FLAG_IS_HEADER) {
av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
return;
return 0;
}
avio_seek(pb, file_size - tag_bytes, SEEK_SET);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment