From f6eccde6d3ca025966fc152a387811187b5b3a52 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 3 Apr 2013 17:27:54 +0200 Subject: Xulrunner / Firefox 20.0 --- mozilla-844883.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mozilla-844883.patch (limited to 'mozilla-844883.patch') 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 +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(); + -- cgit