mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 20:25:58 +01:00
screencopy: avoid dangling client ptrs on client destroy
This commit is contained in:
parent
ffd7217243
commit
21f7f32dc9
1 changed files with 9 additions and 0 deletions
|
@ -95,6 +95,9 @@ static SScreencopyFrame* frameFromResource(wl_resource* resource) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CScreencopyProtocolManager::removeClient(CScreencopyClient* client, bool force) {
|
void CScreencopyProtocolManager::removeClient(CScreencopyClient* client, bool force) {
|
||||||
|
if (!client)
|
||||||
|
return;
|
||||||
|
|
||||||
if (!force) {
|
if (!force) {
|
||||||
if (!client || client->ref <= 0)
|
if (!client || client->ref <= 0)
|
||||||
return;
|
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???
|
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) {
|
static void handleManagerResourceDestroy(wl_resource* resource) {
|
||||||
|
|
Loading…
Reference in a new issue