Fix a couple of crashes, and temporarily work around another one
authorMike Gorse <mgorse@novell.com>
Fri, 31 Dec 2010 12:40:44 +0000 (07:40 -0500)
committerMike Gorse <mgorse@novell.com>
Fri, 31 Dec 2010 12:40:44 +0000 (07:40 -0500)
atspi/atspi-object.c

index 3545845..21a0ce1 100644 (file)
@@ -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);
 }