Changeset 76119 in webkit


Ignore:
Timestamp:
Jan 19, 2011 6:01:13 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-01-19 Aparna Nandyal <aparna.nand@wipro.com>

Reviewed by Andreas Kling.

[Qt] QtTestBrowser crashes when closing if Facebook is opened
https://bugs.webkit.org/show_bug.cgi?id=52554

QtNetworkAccessManager is created in a thread and set as
member variable in QWebPage. When the thread is destroyed
the object is still used. So fix will set the object to
NULL once the thread is destroyed.

  • QtTestBrowser/launcherwindow.cpp: (LauncherWindow::~LauncherWindow):
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r76103 r76119  
     12011-01-19  Aparna Nandyal  <aparna.nand@wipro.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] QtTestBrowser crashes when closing if Facebook is opened
     6        https://bugs.webkit.org/show_bug.cgi?id=52554
     7       
     8        QtNetworkAccessManager is created in a thread and set as
     9        member variable in QWebPage. When the thread is destroyed
     10        the object is still used. So fix will set the object to
     11        NULL once the thread is destroyed.
     12
     13        * QtTestBrowser/launcherwindow.cpp:
     14        (LauncherWindow::~LauncherWindow):
     15
    1162011-01-18  Maciej Stachowiak  <mjs@apple.com>
    217
  • trunk/Tools/QtTestBrowser/launcherwindow.cpp

    r75467 r76119  
    5757{
    5858    grabZoomKeys(false);
     59
     60    if (page())
     61        page()->setQnamThreaded(false);
    5962}
    6063
Note: See TracChangeset for help on using the changeset viewer.