vcl/unx/gtk3/gtk3gtkinst.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit f52ca8e48174f7d0f7df38c1bdf17f8491b2259f Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Thu Apr 9 20:10:01 2020 +0100 Commit: Caolán McNamara <caol...@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 <caol...@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 _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits