mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-01 00:11:29 +00:00
Merge branch 'fix-ephy-crash' into 'main'
subsurface: Avoid a crash Closes #6891 See merge request GNOME/gtk!7521
This commit is contained in:
commit
9fd6d431e3
@ -29,11 +29,14 @@ gdk_subsurface_init (GdkSubsurface *self)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void remove_subsurface (GdkSubsurface *subsurface);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gdk_subsurface_finalize (GObject *object)
|
gdk_subsurface_finalize (GObject *object)
|
||||||
{
|
{
|
||||||
GdkSubsurface *subsurface = GDK_SUBSURFACE (object);
|
GdkSubsurface *subsurface = GDK_SUBSURFACE (object);
|
||||||
|
|
||||||
|
remove_subsurface (subsurface);
|
||||||
g_ptr_array_remove (subsurface->parent->subsurfaces, subsurface);
|
g_ptr_array_remove (subsurface->parent->subsurfaces, subsurface);
|
||||||
g_clear_object (&subsurface->parent);
|
g_clear_object (&subsurface->parent);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user