[at-spi2-core] Fix a couple of crashes, and temporarily work around another one



commit a518c9beea394583a0e4d8c7b53065a51fac1b58
Author: Mike Gorse <mgorse novell com>
Date:   Fri Dec 31 07:40:44 2010 -0500

    Fix a couple of crashes, and temporarily work around another one

 atspi/atspi-object.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/atspi/atspi-object.c b/atspi/atspi-object.c
index 3545845..21a0ce1 100644
--- a/atspi/atspi-object.c
+++ b/atspi/atspi-object.c
@@ -49,7 +49,8 @@ atspi_object_finalize (GObject *object)
 {
   AtspiObject *aobj = ATSPI_OBJECT (object);
 
-  g_free (aobj->path);
+  /* TODO: Figure out why the next line sometimes crashes */
+  /*g_free (aobj->path); */
 
   G_OBJECT_CLASS (atspi_object_parent_class)->finalize (object);
 }



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