Title: [150877] trunk/Source/WebCore
Revision
150877
Author
[email protected]
Date
2013-05-29 01:53:34 -0700 (Wed, 29 May 2013)

Log Message

PresentationAttributeCacheCleaner::m_hitCount is never initialized
https://bugs.webkit.org/show_bug.cgi?id=116946

Reviewed by Andreas Kling.

Merge https://chromium.googlesource.com/chromium/blink/+/70be7ddc41141ef6dec7795d37842c27dab2e194.

* dom/StyledElement.cpp:
(WebCore::PresentationAttributeCacheCleaner::PresentationAttributeCacheCleaner):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150876 => 150877)


--- trunk/Source/WebCore/ChangeLog	2013-05-29 08:47:46 UTC (rev 150876)
+++ trunk/Source/WebCore/ChangeLog	2013-05-29 08:53:34 UTC (rev 150877)
@@ -1,3 +1,15 @@
+2013-05-29  Ryosuke Niwa  <[email protected]>
+
+        PresentationAttributeCacheCleaner::m_hitCount is never initialized
+        https://bugs.webkit.org/show_bug.cgi?id=116946
+
+        Reviewed by Andreas Kling.
+
+        Merge https://chromium.googlesource.com/chromium/blink/+/70be7ddc41141ef6dec7795d37842c27dab2e194.
+
+        * dom/StyledElement.cpp:
+        (WebCore::PresentationAttributeCacheCleaner::PresentationAttributeCacheCleaner):
+
 2013-05-29  Kent Tamura  <[email protected]>
 
         Remove ENABLE_INPUT_MULTIPLE_FIELDS_UI.

Modified: trunk/Source/WebCore/dom/StyledElement.cpp (150876 => 150877)


--- trunk/Source/WebCore/dom/StyledElement.cpp	2013-05-29 08:47:46 UTC (rev 150876)
+++ trunk/Source/WebCore/dom/StyledElement.cpp	2013-05-29 08:53:34 UTC (rev 150877)
@@ -86,7 +86,8 @@
     WTF_MAKE_NONCOPYABLE(PresentationAttributeCacheCleaner); WTF_MAKE_FAST_ALLOCATED;
 public:
     PresentationAttributeCacheCleaner()
-        : m_cleanTimer(this, &PresentationAttributeCacheCleaner::cleanCache)
+        : m_hitCount(0)
+        , m_cleanTimer(this, &PresentationAttributeCacheCleaner::cleanCache)
     {
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to