From: Vittorio Giovara Date: Sat, 12 Oct 2013 13:37:56 +0000 (+0200) Subject: oggparsevorbis: fail on memory allocation error X-Git-Tag: v10_alpha1~544 X-Git-Url: https://git.libav.org/?p=libav.git;a=commitdiff_plain;h=fd2384f02b905a106fba9222ece4ddbe2ec61937 oggparsevorbis: fail on memory allocation error --- diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index 7468e0dae4..c19b54552c 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -120,9 +120,7 @@ int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m, if (!tt || !ct) { av_freep(&tt); av_freep(&ct); - av_log(as, AV_LOG_WARNING, - "out-of-memory error. skipping VorbisComment tag.\n"); - continue; + return AVERROR(ENOMEM); } for (j = 0; j < tl; j++)