Title: [124273] trunk/Source/WebCore
Revision
124273
Author
[email protected]
Date
2012-07-31 17:07:49 -0700 (Tue, 31 Jul 2012)

Log Message

ImageCG doesn't initialize m_decodedPropertiesSize in BitmapImage constructor
https://bugs.webkit.org/show_bug.cgi?id=92418

Reviewed by Dan Bernstein.

Tested by existing content.

* platform/graphics/cg/ImageCG.cpp:
(WebCore::BitmapImage::BitmapImage): initialize m_decodedPropertiesSize to zero.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124272 => 124273)


--- trunk/Source/WebCore/ChangeLog	2012-07-31 23:50:04 UTC (rev 124272)
+++ trunk/Source/WebCore/ChangeLog	2012-08-01 00:07:49 UTC (rev 124273)
@@ -1,3 +1,15 @@
+2012-07-31  Dean Jackson  <[email protected]>
+
+        ImageCG doesn't initialize m_decodedPropertiesSize in BitmapImage constructor
+        https://bugs.webkit.org/show_bug.cgi?id=92418
+
+        Reviewed by Dan Bernstein.
+
+        Tested by existing content.
+
+        * platform/graphics/cg/ImageCG.cpp:
+        (WebCore::BitmapImage::BitmapImage): initialize m_decodedPropertiesSize to zero.
+
 2012-07-31  Shawn Singh  <[email protected]>
 
         [chromium] Hit test points are being clipped by layers that should not clip

Modified: trunk/Source/WebCore/platform/graphics/cg/ImageCG.cpp (124272 => 124273)


--- trunk/Source/WebCore/platform/graphics/cg/ImageCG.cpp	2012-07-31 23:50:04 UTC (rev 124272)
+++ trunk/Source/WebCore/platform/graphics/cg/ImageCG.cpp	2012-08-01 00:07:49 UTC (rev 124273)
@@ -77,6 +77,7 @@
     , m_repetitionCountStatus(Unknown)
     , m_repetitionsComplete(0)
     , m_decodedSize(0)
+    , m_decodedPropertiesSize(0)
     , m_frameCount(1)
     , m_isSolidColor(false)
     , m_checkedForSolidColor(false)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to