From 21f7f32dc98521025cea76e530204ea64f2630f0 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Tue, 27 Feb 2024 12:23:59 +0000 Subject: [PATCH] screencopy: avoid dangling client ptrs on client destroy --- src/protocols/Screencopy.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/protocols/Screencopy.cpp b/src/protocols/Screencopy.cpp index 6dc787fb..b2f196f3 100644 --- a/src/protocols/Screencopy.cpp +++ b/src/protocols/Screencopy.cpp @@ -95,6 +95,9 @@ static SScreencopyFrame* frameFromResource(wl_resource* resource) { } void CScreencopyProtocolManager::removeClient(CScreencopyClient* client, bool force) { + if (!client) + return; + if (!force) { if (!client || client->ref <= 0) return; @@ -104,6 +107,12 @@ void CScreencopyProtocolManager::removeClient(CScreencopyClient* client, bool fo } m_lClients.remove(*client); // TODO: this doesn't get cleaned up after sharing app exits??? + + for (auto& f : m_lFrames) { + // avoid dangling ptrs + if (f.client == client) + f.client = nullptr; + } } static void handleManagerResourceDestroy(wl_resource* resource) {