summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/dv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c
index 0a893f482e..3243ca2ece 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -472,6 +472,9 @@ static int dv_read_timecode(AVFormatContext *s) {
partial_frame_size);
RawDVContext *c = s->priv_data;
+ if (!partial_frame)
+ return AVERROR(ENOMEM);
+
ret = avio_read(s->pb, partial_frame, partial_frame_size);
if (ret < 0)
goto finish;