diff --git a/modules/gui/qt/network/networkdevicemodel.cpp b/modules/gui/qt/network/networkdevicemodel.cpp index a6f78a652b8f988251fb1f746174a3aadd56c553..b9e87dabed782750cf4e4c1ef6d7562794fddae1 100644 --- a/modules/gui/qt/network/networkdevicemodel.cpp +++ b/modules/gui/qt/network/networkdevicemodel.cpp @@ -209,6 +209,17 @@ public: : LocalListBaseModelPrivate<NetworkDeviceItemPtr>(pub) {} + ~NetworkDeviceModelPrivate() + { + //Explicilty disconnect signals here: + // - destructor will release m_sourcesProvider + // - its shared MediaSourceModel will be released + // - they will notify `mediaRemoved`, but the slot expects the shared MediaSourceModel to be valid + // at this point we don't care about model updates + for (auto& conn : m_sourceUpdateConnections) + QObject::disconnect(conn); + } + NetworkDeviceModelLoader::ItemCompare getSortFunction() const override { if (m_sortCriteria == "mrl")