[glib] Fix g_binding_unbind() when the source and target are the same



commit b07ba8ed3b3c6b2b0402946283e896ad66b0a573
Author: Garrett Regier <garrettregier gmail com>
Date:   Wed May 13 22:15:27 2015 -0700

    Fix g_binding_unbind() when the source and target are the same
    
    It tried to remove a weak ref, but it is only taken if the
    source and target object are different.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=749352

 gobject/gbinding.c      |    9 +++++++--
 gobject/tests/binding.c |   13 +++++++++++++
 2 files changed, 20 insertions(+), 2 deletions(-)
---
diff --git a/gobject/gbinding.c b/gobject/gbinding.c
index 7bcdb4c..f9afaad 100644
--- a/gobject/gbinding.c
+++ b/gobject/gbinding.c
@@ -438,6 +438,8 @@ static inline void
 g_binding_unbind_internal (GBinding *binding,
                            gboolean  unref_binding)
 {
+  gboolean source_is_target = binding->source == binding->target;
+
   /* dispose of the transformation data */
   if (binding->notify != NULL)
     {
@@ -464,8 +466,11 @@ g_binding_unbind_internal (GBinding *binding,
       if (binding->target_notify != 0)
         g_signal_handler_disconnect (binding->target, binding->target_notify);
 
-      g_object_weak_unref (binding->target, weak_unbind, binding);
-      remove_binding_qdata (binding->target, binding);
+      if (!source_is_target)
+        {
+          g_object_weak_unref (binding->target, weak_unbind, binding);
+          remove_binding_qdata (binding->target, binding);
+        }
 
       binding->target_notify = 0;
       binding->target = NULL;
diff --git a/gobject/tests/binding.c b/gobject/tests/binding.c
index ac82f6d..b327faf 100644
--- a/gobject/tests/binding.c
+++ b/gobject/tests/binding.c
@@ -610,6 +610,19 @@ binding_unbind (void)
 
   g_object_unref (source);
   g_object_unref (target);
+
+
+  /* g_binding_unbind() has a special case for this */
+  source = g_object_new (binding_source_get_type (), NULL);
+  binding = g_object_bind_property (source, "foo",
+                                    source, "bar",
+                                    G_BINDING_DEFAULT);
+  g_object_add_weak_pointer (G_OBJECT (binding), (gpointer *) &binding);
+
+  g_binding_unbind (binding);
+  g_assert (binding == NULL);
+
+  g_object_unref (source);
 }
 
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]