Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-53858

Memory Leak during construction, only while in debug mode, QtWebEngine

    XMLWordPrintable

Details

    • Bug
    • Resolution: Invalid
    • P5: Not important
    • None
    • 5.6.0
    • WebEngine
    • None
    • MSVC2015, Windows 10, both 32 and 64 bit. Qt 5.6.0

    Description

      I'm on Windows 10, using MSVC2015.
      I'm trying to use the QtWebEngineView. It works well in release mode (QtCreator), but crashes regularly in debug mode. It consumes serveral GB of memory before doing so. Sometimes it does, sometimes it doesn't.
      It's always when creating a new page

      zcMMPage::zcMMPage(zcMMViewerWebEngine *viewer, QObject *parent)
          : QWebEnginePage(parent), _viewer(viewer)
      {
          qDebug() << "zcMMPage in constructor";
      }
      

      The constructor never reaches the debug statement.

      I reprogrammed the whole solution using QML and QtWebEngine. The QQuickWidget shows the same behaviour:

      zcMMViewerQml::zcMMViewerQml(QWidget *parent)
          : QQuickWidget(parent)
      {
          qDebug() << __FUNCTION__ << "zcMMViewer";
      
          qDebug() << "QQuickWidget";
          QQuickWidget *_quick = this;
          _quick->setResizeMode(QQuickWidget::SizeRootObjectToView);
          qDebug() << "QML Source";
          _quick->setSource(QUrl("qrc:/mm/zcmmview.qml"));
          qDebug() << "Connect QML Signals";
      
      (..)
      

      It just never reaches the " qDebug() << _FUNCTION_ << "zcMMViewer";
      " statement.

      It looks like both problems point in the same direction.
      Both consume GBs of memory before giving up.

      It only appears in debug mode

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qt_webengine_team Qt WebEngine Team
            hansdijkema Hans Dijkema
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes