Changeset 161855 in webkit


Ignore:
Timestamp:
Jan 12, 2014 7:55:32 PM (10 years ago)
Author:
mitz@apple.com
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.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r161853 r161855  
     12014-01-12  Dan Bernstein  <mitz@apple.com>
     2
     3        Fix an assertion failure in initializeDates() when launching Safari, which was introduced in r161852.
     4
     5        Reviewed by Andy Estes.
     6
     7        * wtf/ThreadingPthreads.cpp:
     8        (WTF::initializeThreading): Set isInitialized to true.
     9
    1102014-01-12  Darin Adler  <darin@apple.com>
    211
  • trunk/Source/WTF/wtf/ThreadingPthreads.cpp

    r161852 r161855  
    116116        return;
    117117
     118    isInitialized = true;
     119
    118120    WTF::double_conversion::initialize();
    119121    // StringImpl::empty() does not construct its static string in a threadsafe fashion,
Note: See TracChangeset for help on using the changeset viewer.