From a518c9beea394583a0e4d8c7b53065a51fac1b58 Mon Sep 17 00:00:00 2001 From: Mike Gorse Date: Fri, 31 Dec 2010 07:40:44 -0500 Subject: [PATCH] Fix a couple of crashes, and temporarily work around another one --- atspi/atspi-object.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.7.4