Our app is crashing in QtQuickItemPrivate::removeFromDirtyList()
-
Hi all.
Our app is crashing in or slightly after this call. I'm not sure exactly what it's doing or trying to do at that point, but I did find a relevant (but closed) bug report: https://bugreports.qt.io/browse/QTBUG-43376
We're still investigating, but I was wondering if anyone had some idea of what kind of action leads to this. This is the call stack at crash time:

Thanks! -
Hi all.
Our app is crashing in or slightly after this call. I'm not sure exactly what it's doing or trying to do at that point, but I did find a relevant (but closed) bug report: https://bugreports.qt.io/browse/QTBUG-43376
We're still investigating, but I was wondering if anyone had some idea of what kind of action leads to this. This is the call stack at crash time:

Thanks!@Stokestack
the first thing that comes to my mind,do you expose QObject based classes/objects to qml (without them having a c++ parent) and delete them yourself when they are no longer needed ?
QML takes ownership of those objects, if not prevented, and will try to delete them itself
-
@Stokestack
the first thing that comes to my mind,do you expose QObject based classes/objects to qml (without them having a c++ parent) and delete them yourself when they are no longer needed ?
QML takes ownership of those objects, if not prevented, and will try to delete them itself
@J-Hilk Thanks for the reply! I don't know, but I will look for this.