From e6d9f7c849cc8a83032345ac5d27ba25269e64cf Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Mon, 28 Aug 2023 12:20:27 -0700 Subject: [PATCH] sysprof: fix ownership transfer of treelistrow Fixes #92 --- src/sysprof/sysprof-callgraph-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysprof/sysprof-callgraph-view.c b/src/sysprof/sysprof-callgraph-view.c index ccd187c5..cd3a208b 100644 --- a/src/sysprof/sysprof-callgraph-view.c +++ b/src/sysprof/sysprof-callgraph-view.c @@ -303,8 +303,8 @@ make_descendant_root_action (GtkWidget *widget, { SysprofCallgraphView *self = (SysprofCallgraphView *)widget; g_autoptr(SysprofCallgraphFrame) frame = NULL; - g_autoptr(GtkTreeListRow) row = NULL; GtkSelectionModel *model; + GtkTreeListRow *row; g_assert (SYSPROF_IS_CALLGRAPH_VIEW (self));