[Webkit-unassigned] [Bug 24458] QWebView memory leak

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 9 00:00:54 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=24458





------- Comment #1 from ben at meyerhome.net  2009-03-09 00:00 PDT -------
A more valid test case:

#include <QtGui/QtGui>
#include <QtWebKit/QtWebKit>

int main(int argc, char **argv)
{
    QApplication application(argc, argv);

    while (true) {
        QWebView *view = new QWebView;
        view->show();
        delete view;
    }

    return application.exec();
}


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list