Ignore:
Timestamp:
Dec 11, 2008, 3:15:38 AM (16 years ago)
Author:
[email protected]
Message:

2008-12-04 Gabor Loki <[email protected]>

Reviewed by Darin Adler and landed by Holger Freyther.

<https://bugs.webkit.org/show_bug.cgi?id=22648>
Fix threading on Qt-port and Gtk-port for Sampling tool.

  • wtf/ThreadingGtk.cpp: (WTF::waitForThreadCompletion):
  • wtf/ThreadingQt.cpp: (WTF::waitForThreadCompletion):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/ThreadingQt.cpp

    r38101 r39204  
    169169
    170170    clearThreadForIdentifier(threadID);
    171     *result = static_cast<ThreadPrivate*>(thread)->getReturnValue();
     171    if (result)
     172        *result = static_cast<ThreadPrivate*>(thread)->getReturnValue();
    172173
    173174    return !res;
Note: See TracChangeset for help on using the changeset viewer.