Blame SOURCES/0001-h264parse-Ensure-codec_data-has-the-required-size-wh.patch

9ac2ee
From 3003cbe1624cc6daa416caba9c1dce0180f3837c Mon Sep 17 00:00:00 2001
9ac2ee
From: Wim Taymans <wtaymans@redhat.com>
9ac2ee
Date: Wed, 7 Dec 2016 09:37:10 +0100
9ac2ee
Subject: [PATCH] h264parse: Ensure codec_data has the required size when
9ac2ee
 reading number of SPS
9ac2ee
9ac2ee
https://bugzilla.gnome.org/show_bug.cgi?id=774896
9ac2ee
---
9ac2ee
 gst/videoparsers/gsth264parse.c | 3 +++
9ac2ee
 1 file changed, 3 insertions(+)
9ac2ee
9ac2ee
diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c
9ac2ee
index cf81657..4c14f2b 100644
9ac2ee
--- a/gst/videoparsers/gsth264parse.c
9ac2ee
+++ b/gst/videoparsers/gsth264parse.c
9ac2ee
@@ -1605,6 +1605,9 @@ gst_h264_parse_set_caps (GstBaseParse * parse, GstCaps * caps)
9ac2ee
       off = nalu.offset + nalu.size;
9ac2ee
     }
9ac2ee
 
9ac2ee
+    if (off >= size) {
9ac2ee
+      goto avcc_too_small;
9ac2ee
+    }
9ac2ee
     num_pps = data[off];
9ac2ee
     off++;
9ac2ee
 
9ac2ee
-- 
9ac2ee
2.9.3
9ac2ee