Title: [97044] trunk/Source/WebCore
Revision
97044
Author
yu...@chromium.org
Date
2011-10-10 00:15:15 -0700 (Mon, 10 Oct 2011)

Log Message

Missing m_notificationPresenter initialization in WorkerThread constructor
https://bugs.webkit.org/show_bug.cgi?id=69741

Added missing m_notificationPresenter(0)

Reviewed by Pavel Feldman.

* workers/WorkerThread.cpp:
(WebCore::WorkerThread::WorkerThread):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97043 => 97044)


--- trunk/Source/WebCore/ChangeLog	2011-10-10 05:57:49 UTC (rev 97043)
+++ trunk/Source/WebCore/ChangeLog	2011-10-10 07:15:15 UTC (rev 97044)
@@ -1,3 +1,15 @@
+2011-10-09  Yury Semikhatsky  <yu...@chromium.org>
+
+        Missing m_notificationPresenter initialization in WorkerThread constructor
+        https://bugs.webkit.org/show_bug.cgi?id=69741
+
+        Added missing m_notificationPresenter(0)
+
+        Reviewed by Pavel Feldman.
+
+        * workers/WorkerThread.cpp:
+        (WebCore::WorkerThread::WorkerThread):
+
 2011-10-09  Daniel Bates  <dba...@webkit.org>
 
         Another attempt to fix the Leopard Intel Debug build after changeset 97034 <http://trac.webkit.org/changeset/97034>

Modified: trunk/Source/WebCore/workers/WorkerThread.cpp (97043 => 97044)


--- trunk/Source/WebCore/workers/WorkerThread.cpp	2011-10-10 05:57:49 UTC (rev 97043)
+++ trunk/Source/WebCore/workers/WorkerThread.cpp	2011-10-10 07:15:15 UTC (rev 97044)
@@ -88,6 +88,9 @@
     , m_workerLoaderProxy(workerLoaderProxy)
     , m_workerReportingProxy(workerReportingProxy)
     , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode))
+#if ENABLE(NOTIFICATIONS)
+    , m_notificationPresenter(0)
+#endif
 {
     MutexLocker lock(threadCountMutex());
     m_threadCount++;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to