mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 14:26:00 +01:00
waylandResource: remove user data in markDefunct and not ~dtor
This commit is contained in:
parent
8314341ffe
commit
774a5bedf8
1 changed files with 1 additions and 3 deletions
|
@ -31,6 +31,7 @@ void CWaylandResource::markDefunct() {
|
|||
|
||||
Debug::log(TRACE, "[wl res %lx] now defunct", m_pWLResource);
|
||||
m_bDefunct = true;
|
||||
wl_resource_set_user_data(m_pWLResource, nullptr);
|
||||
}
|
||||
|
||||
CWaylandResource::~CWaylandResource() {
|
||||
|
@ -39,9 +40,6 @@ CWaylandResource::~CWaylandResource() {
|
|||
wl_list_remove(&m_liResourceDestroy.link);
|
||||
wl_list_init(&m_liResourceDestroy.link);
|
||||
|
||||
if (m_pWLResource)
|
||||
wl_resource_set_user_data(m_pWLResource, nullptr);
|
||||
|
||||
Debug::log(TRACE, "[wl res %lx] destroying (wl_resource_destroy will be %s)", m_pWLResource, (DESTROY ? "sent" : "not sent"));
|
||||
|
||||
if (DESTROY)
|
||||
|
|
Loading…
Reference in a new issue