diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-22 17:28:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 17:28:37 -0400 |
commit | 00bb9de29b154970ac76646d2e8db5fc2eda37f9 (patch) | |
tree | 90134db94aa17a09335465451c145c9b28be9dd0 /include/wlr | |
parent | ff2e08aa7481517d0bd4379ff0d0b51098f72064 (diff) | |
parent | e86cd4dc33e495c2e5cacd319ba75984ea19a868 (diff) |
Merge pull request #727 from martinetd/x11_wl_backend_fixes
Address sanitizer fixes
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 1 | ||||
-rw-r--r-- | include/wlr/types/wlr_xdg_shell_v6.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index ad0a626f..a5fa093b 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -53,6 +53,7 @@ struct wlr_xdg_popup_grab { struct wlr_seat *seat; struct wl_list popups; struct wl_list link; // wlr_xdg_shell::popup_grabs + struct wl_listener seat_destroy; }; enum wlr_xdg_surface_role { diff --git a/include/wlr/types/wlr_xdg_shell_v6.h b/include/wlr/types/wlr_xdg_shell_v6.h index d8503d28..a1bdac1b 100644 --- a/include/wlr/types/wlr_xdg_shell_v6.h +++ b/include/wlr/types/wlr_xdg_shell_v6.h @@ -53,6 +53,7 @@ struct wlr_xdg_popup_grab_v6 { struct wlr_seat *seat; struct wl_list popups; struct wl_list link; // wlr_xdg_shell_v6::popup_grabs + struct wl_listener seat_destroy; }; enum wlr_xdg_surface_v6_role { |