summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/cafdec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index e954c65683..0b5d59cdae 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -154,9 +154,8 @@ static int read_kuki_chunk(AVFormatContext *s, int64_t size)
avio_skip(pb, size - ALAC_NEW_KUKI);
}
} else {
- if (ff_alloc_extradata(st->codec, size))
+ if (ff_get_extradata(st->codec, pb, size) < 0)
return AVERROR(ENOMEM);
- avio_read(pb, st->codec->extradata, size);
}
return 0;