summaryrefslogtreecommitdiffstats
path: root/mozilla-844883.patch
blob: 9298d7d267e6773258edeae20dcd4c6d9752eab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();