diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-02-23 08:19:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-23 08:19:37 -0500 |
commit | 5ad15c90d507b9658f2917588b6e1bcf33c4615f (patch) | |
tree | a8a6b751d56d1f5ec09d47bddb0e3c4fbe939149 /include/rootston/output.h | |
parent | bd9583a7e8108ab4fd31fc5ab6f7c1552258fa6e (diff) | |
parent | ca3a9478640e6e70b89a988fd0005e6b57b6b35c (diff) |
Merge pull request #664 from emersion/fix-various-use-after-free
Fix a bunch of use-after-free
Diffstat (limited to 'include/rootston/output.h')
-rw-r--r-- | include/rootston/output.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h index 9682e4f5..a852a204 100644 --- a/include/rootston/output.h +++ b/include/rootston/output.h @@ -19,7 +19,8 @@ struct roots_output { struct wlr_output_damage *damage; struct wl_listener destroy; - struct wl_listener frame; + struct wl_listener damage_frame; + struct wl_listener damage_destroy; }; void handle_new_output(struct wl_listener *listener, void *data); |