mirror of
https://github.com/hyprwm/hyprwayland-scanner.git
synced 2024-11-22 23:45:58 +01:00
source: set user data after checks
This commit is contained in:
parent
6fdc0ceac9
commit
89b337424b
1 changed files with 3 additions and 3 deletions
|
@ -744,12 +744,12 @@ const wl_interface {} = {{
|
||||||
wl_list_remove(&resourceDestroyListener.link);
|
wl_list_remove(&resourceDestroyListener.link);
|
||||||
wl_list_init(&resourceDestroyListener.link);
|
wl_list_init(&resourceDestroyListener.link);
|
||||||
|
|
||||||
wl_resource_set_user_data(pResource, nullptr);
|
|
||||||
|
|
||||||
// if we still own the wayland resource,
|
// if we still own the wayland resource,
|
||||||
// it means we need to destroy it.
|
// it means we need to destroy it.
|
||||||
if (wl_resource_get_user_data(pResource) == this)
|
if (wl_resource_get_user_data(pResource) == this) {{
|
||||||
|
wl_resource_set_user_data(pResource, nullptr);
|
||||||
wl_resource_destroy(pResource);
|
wl_resource_destroy(pResource);
|
||||||
|
}}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
void {}::onDestroyCalled() {{
|
void {}::onDestroyCalled() {{
|
||||||
|
|
Loading…
Reference in a new issue