x11: Account for variable being possibly NULL
We might end up with a NULL opaque_region here in some circumstances (client deleted _NET_WM_OPAQUE_REGION, or passed invalid data or a region with 0 rectangles), account for that when freeing the variable. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2758>
This commit is contained in:
parent
2b6651327e
commit
c6c7f310d8
@ -715,7 +715,7 @@ reload_opaque_region (MetaWindow *window,
|
||||
else if (window->frame && value->source_xwindow == window->frame->xwindow)
|
||||
meta_frame_set_opaque_region (window->frame, opaque_region);
|
||||
|
||||
cairo_region_destroy (opaque_region);
|
||||
g_clear_pointer (&opaque_region, cairo_region_destroy);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user