summaryrefslogtreecommitdiffstats
path: root/mozilla-844883.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-844883.patch')
-rw-r--r--mozilla-844883.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/mozilla-844883.patch b/mozilla-844883.patch
new file mode 100644
index 0000000..9298d7d
--- /dev/null
+++ b/mozilla-844883.patch
@@ -0,0 +1,17 @@
+# HG changeset patch
+# Parent f8a3e008d03b538873a8d4f16fb97829f171517b
+# User Steve Singer <steve@ssinger.info>
+bug 844883 use a signed value for the stride
+
+diff -r f8a3e008d03b -r a298fedfda70 gfx/2d/Blur.cpp
+--- a/gfx/2d/Blur.cpp Sun Mar 17 00:55:23 2013 -0400
++++ b/gfx/2d/Blur.cpp Sun Mar 17 01:28:39 2013 -0400
+@@ -650,7 +650,7 @@
+ return;
+ }
+
+- uint32_t stride32bit = aIntegralImageStride / 4;
++ int32_t stride32bit = aIntegralImageStride / 4;
+
+ int32_t leftInflation = RoundUpToMultipleOf4(aLeftLobe).value();
+