vcl/unx/gtk3/gtkinst.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit f1e45b80c396f90d763d3e2e5bcd3baf12383127
Author:     Julien Nabet <serval2...@yahoo.fr>
AuthorDate: Sat Jan 13 17:26:34 2024 +0100
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Sat Jan 13 21:14:10 2024 +0100

    Add missing g_object_thaw_notify before an early return (vcl/gtkinst)
    
    Change-Id: I3ba4bfd9a302e03dd25e4635dfbb0a41d265349e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162002
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com>

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index df54b50368f6..1dafaa04d595 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -15500,7 +15500,10 @@ public:
         GtkTreePath* end_path;
 
         if (!gtk_tree_view_get_visible_range(m_pTreeView, &start_path, 
&end_path))
+        {
+            g_object_thaw_notify(G_OBJECT(m_pTreeModel));
             return;
+        }
 
         GtkInstanceTreeIter aGtkIter(nullptr);
         gtk_tree_model_get_iter(m_pTreeModel, &aGtkIter.iter, start_path);

Reply via email to