Title: [161855] trunk/Source/WTF
Revision
161855
Author
[email protected]
Date
2014-01-12 19:55:32 -0800 (Sun, 12 Jan 2014)

Log Message

Fix an assertion failure in initializeDates() when launching Safari, which was introduced in r161852.

Reviewed by Andy Estes.

* wtf/ThreadingPthreads.cpp:
(WTF::initializeThreading): Set isInitialized to true.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (161854 => 161855)


--- trunk/Source/WTF/ChangeLog	2014-01-13 03:18:28 UTC (rev 161854)
+++ trunk/Source/WTF/ChangeLog	2014-01-13 03:55:32 UTC (rev 161855)
@@ -1,3 +1,12 @@
+2014-01-12  Dan Bernstein  <[email protected]>
+
+        Fix an assertion failure in initializeDates() when launching Safari, which was introduced in r161852.
+
+        Reviewed by Andy Estes.
+
+        * wtf/ThreadingPthreads.cpp:
+        (WTF::initializeThreading): Set isInitialized to true.
+
 2014-01-12  Darin Adler  <[email protected]>
 
         Add PLATFORM(COCOA) and USE(FOUNDATION)

Modified: trunk/Source/WTF/wtf/ThreadingPthreads.cpp (161854 => 161855)


--- trunk/Source/WTF/wtf/ThreadingPthreads.cpp	2014-01-13 03:18:28 UTC (rev 161854)
+++ trunk/Source/WTF/wtf/ThreadingPthreads.cpp	2014-01-13 03:55:32 UTC (rev 161855)
@@ -115,6 +115,8 @@
     if (isInitialized)
         return;
 
+    isInitialized = true;
+
     WTF::double_conversion::initialize();
     // StringImpl::empty() does not construct its static string in a threadsafe fashion,
     // so ensure it has been initialized from here.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to