[Libreoffice-commits] core.git: vcl/unx
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Fri Apr 10 07:56:35 UTC 2020
vcl/unx/gtk3/gtk3gtkinst.cxx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
New commits:
commit f52ca8e48174f7d0f7df38c1bdf17f8491b2259f
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Apr 9 20:10:01 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Apr 10 09:55:55 2020 +0200
fix tree view cursor leak
Change-Id: I8660db3d5eddb1596529783e13dff130bb3d0858
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91999
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index d4a65c9ce53f..4dc4f10152d2 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -10433,7 +10433,10 @@ public:
GtkTreeModel *pModel = GTK_TREE_MODEL(m_pTreeStore);
gtk_tree_model_get_iter(pModel, &pGtkIter->iter, path);
}
- return path != nullptr;
+ if (!path)
+ return false;
+ gtk_tree_path_free(path);
+ return true;
}
virtual int get_cursor_index() const override
More information about the Libreoffice-commits
mailing list