Changeset 201748 in webkit


Ignore:
Timestamp:
Jun 7, 2016 5:43:21 AM (8 years ago)
Author:
peavo@outlook.com
Message:

[Win][IndexedDB] Crash when running worker test.
https://bugs.webkit.org/show_bug.cgi?id=158434

Reviewed by Alex Christensen.

Initialize main runloop, otherwise RunLoop::main() will return nullptr.

  • WebView.cpp:

(WebView::WebView):

Location:
trunk/Source/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/ChangeLog

    r201655 r201748  
     12016-06-07  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win][IndexedDB] Crash when running worker test.
     4        https://bugs.webkit.org/show_bug.cgi?id=158434
     5
     6        Reviewed by Alex Christensen.
     7
     8        Initialize main runloop, otherwise RunLoop::main() will return nullptr.
     9
     10        * WebView.cpp:
     11        (WebView::WebView):
     12
    1132016-06-03  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebKit/win/WebView.cpp

    r201649 r201748  
    403403    JSC::initializeThreading();
    404404    WTF::initializeMainThread();
     405    RunLoop::initializeMainRunLoop();
    405406
    406407    m_backingStoreSize.cx = m_backingStoreSize.cy = 0;
Note: See TracChangeset for help on using the changeset viewer.