summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_latm.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rtpdec_latm.c')
-rw-r--r--libavformat/rtpdec_latm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpdec_latm.c b/libavformat/rtpdec_latm.c
index 9087d6bec5..de18e81ea9 100644
--- a/libavformat/rtpdec_latm.c
+++ b/libavformat/rtpdec_latm.c
@@ -116,8 +116,8 @@ static int parse_fmtp_config(AVStream *st, const char *value)
goto end;
}
av_freep(&st->codecpar->extradata);
- if (ff_alloc_extradata(st->codecpar, (get_bits_left(&gb) + 7)/8)) {
- ret = AVERROR(ENOMEM);
+ ret = ff_alloc_extradata(st->codecpar, (get_bits_left(&gb) + 7)/8);
+ if (ret < 0) {
goto end;
}
for (i = 0; i < st->codecpar->extradata_size; i++)