This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
oggparsevorbis: fail on memory allocation error
tags/n2.1
Vittorio Giovara
Anton Khirnov
11 years ago
parent
c18375ec80
commit
fd2384f02b
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
libavformat/oggparsevorbis.c
+ 1
- 3
libavformat/oggparsevorbis.c
View File
@@ -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++)
Write
Preview
Loading…
Cancel
Save