Blame SOURCES/0006-geometrictransform-crash-fix2.patch

56b13a
From 7dd5b2002abf516ebdf92696c57a9a7692c166e9 Mon Sep 17 00:00:00 2001
56b13a
From: Thiago Santos <thiago.sousa.santos@collabora.com>
56b13a
Date: Tue, 20 Mar 2012 23:07:11 +0000
56b13a
Subject: geometrictransform: Prevent access to the transform map when it is null
56b13a
56b13a
Check if the map doesn't exist when receiving a new caps and create
56b13a
a new one. This prevents that the transform functions try to access
56b13a
the map when it doesn't exist.
56b13a
56b13a
diff --git a/gst/geometrictransform/gstgeometrictransform.c b/gst/geometrictransform/gstgeometrictransform.c
56b13a
index be651a4..a1ec3ab 100644
56b13a
--- a/gst/geometrictransform/gstgeometrictransform.c
56b13a
+++ b/gst/geometrictransform/gstgeometrictransform.c
56b13a
@@ -178,8 +178,8 @@ gst_geometric_transform_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
56b13a
 
56b13a
     /* regenerate the map */
56b13a
     GST_OBJECT_LOCK (gt);
56b13a
-    if (old_width == 0 || old_height == 0 || gt->width != old_width ||
56b13a
-        gt->height != old_height) {
56b13a
+    if (gt->map == NULL || old_width == 0 || old_height == 0
56b13a
+        || gt->width != old_width || gt->height != old_height) {
56b13a
       if (klass->prepare_func)
56b13a
         if (!klass->prepare_func (gt)) {
56b13a
           GST_OBJECT_UNLOCK (gt);
56b13a
@@ -352,6 +352,9 @@ gst_geometric_transform_stop (GstBaseTransform * trans)
56b13a
 {
56b13a
   GstGeometricTransform *gt = GST_GEOMETRIC_TRANSFORM_CAST (trans);
56b13a
 
56b13a
+  gt->width = 0;
56b13a
+  gt->height = 0;
56b13a
+
56b13a
   g_free (gt->map);
56b13a
   gt->map = NULL;
56b13a
 
56b13a
--
56b13a
cgit v0.9.0.2-2-gbebe