diff options
author | rcaridade145 <[email protected]> | 2020-02-29 13:01:36 +0000 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2020-05-27 11:26:47 -0400 |
commit | c7d07c2f4d00bb0e7252b773ef2e1d0559f733fd (patch) | |
tree | 29e22666188acd6f5f7879b2fadb0301f7e5f684 /src/compositor/compositor.c | |
parent | 071e7a7b4743aa360df037fd0c02a0300910a4a6 (diff) | |
download | marco-c7d07c2f4d00bb0e7252b773ef2e1d0559f733fd.tar.bz2 marco-c7d07c2f4d00bb0e7252b773ef2e1d0559f733fd.tar.xz |
compositor: fix possible crash closing/destroying window . Fixes to previous commit.
Partially restore call to destroy_win in compositor when calling
meta_window_free. This is needed to ensure that we never call
meta_window_get_frame_bounds while windows is destroying.
https://bugzilla.gnome.org/show_bug.cgi?id=751833
Based on commit https://gitlab.gnome.org/GNOME/metacity/-/commit/a9f28dbc26f5211ef08889109db3dc8c7ba76aca
Diffstat (limited to 'src/compositor/compositor.c')
-rw-r--r-- | src/compositor/compositor.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compositor/compositor.c b/src/compositor/compositor.c index 7e3c79c2..68f54d92 100644 --- a/src/compositor/compositor.c +++ b/src/compositor/compositor.c @@ -156,6 +156,10 @@ void meta_compositor_end_move (MetaCompositor *compositor, void meta_compositor_free_window (MetaCompositor *compositor, MetaWindow *window) { + #ifdef HAVE_COMPOSITE_EXTENSIONS + if (compositor && compositor->free_window) + compositor->free_window (compositor, window); + #endif } void |