diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-11-20 12:12:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-20 12:12:35 -0500 |
commit | becd75fd2ebd31fec9fdcf9cc2f37c5957d31b37 (patch) | |
tree | 51b1e257d8b53288990adffebf96f37567ed8024 /rootston/wl_shell.c | |
parent | c3e0fbdb8f0cb16d99e70d14bb5cef6bd48d4591 (diff) | |
parent | 6a06c3d9073507168df370f9f58642ce2eae1825 (diff) |
Merge pull request #438 from emersion/fix-close-xwayand-app
Fix segfault when closing xwayland views
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r-- | rootston/wl_shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c index 7359c878..d0f5989b 100644 --- a/rootston/wl_shell.c +++ b/rootston/wl_shell.c @@ -83,6 +83,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) { wl_list_remove(&roots_surface->request_set_maximized.link); wl_list_remove(&roots_surface->set_state.link); wl_list_remove(&roots_surface->surface_commit.link); + wl_list_remove(&roots_surface->view->link); view_destroy(roots_surface->view); free(roots_surface); } @@ -131,6 +132,7 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) { view->close = close; roots_surface->view = view; view_init(view, desktop); + wl_list_insert(&desktop->views, &view->link); view_setup(view); |