summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/wavpack.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 0326f15cd6..b27262b94e 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -987,6 +987,9 @@ static int init_thread_copy(AVCodecContext *avctx)
s->curr_frame.f = av_frame_alloc();
s->prev_frame.f = av_frame_alloc();
+ if (!s->curr_frame.f || !s->prev_frame.f)
+ return AVERROR(ENOMEM);
+
return 0;
}