From 9f7a7ed202e00fa562af8bdf69320ad5de7e233a Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Tue, 5 Dec 2023 22:10:04 +0100 Subject: [PATCH] st/widget: Adjust to changes to get_transformed_paint_volume() in mutter This method is now transfer full. Part-of: --- src/st/st-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st/st-widget.c b/src/st/st-widget.c index 6c6fd3a3f..807d8d0eb 100644 --- a/src/st/st-widget.c +++ b/src/st/st-widget.c @@ -829,7 +829,7 @@ st_widget_get_paint_volume (ClutterActor *self, child != NULL; child = clutter_actor_get_next_sibling (child)) { - const ClutterPaintVolume *child_volume; + g_autoptr (ClutterPaintVolume) child_volume = NULL; if (!clutter_actor_is_visible (child)) continue;