[gnome-shell] st-icon: Fix memory leak
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] st-icon: Fix memory leak
- Date: Mon, 19 Dec 2011 14:48:58 +0000 (UTC)
commit c7846e172f9074e3469ad58281256596322fcb19
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Sun Dec 18 23:30:26 2011 -0500
st-icon: Fix memory leak
We were never freeing the dup'd icon_name string for an StIcon.
src/st/st-icon.c | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
---
diff --git a/src/st/st-icon.c b/src/st/st-icon.c
index f93eff5..e5643cc 100644
--- a/src/st/st-icon.c
+++ b/src/st/st-icon.c
@@ -175,6 +175,20 @@ st_icon_dispose (GObject *gobject)
}
static void
+st_icon_finalize (GObject *object)
+{
+ StIconPrivate *priv = ST_ICON (gobject)->priv;
+
+ if (priv->icon_name)
+ {
+ g_free (priv->icon_name);
+ priv->icon_name = NULL;
+ }
+
+ G_OBJECT_CLASS (st_icon_parent_class)->finalize (gobject);
+}
+
+static void
st_icon_get_preferred_height (ClutterActor *actor,
gfloat for_width,
gfloat *min_height_p,
@@ -317,6 +331,7 @@ st_icon_class_init (StIconClass *klass)
object_class->get_property = st_icon_get_property;
object_class->set_property = st_icon_set_property;
object_class->dispose = st_icon_dispose;
+ object_class->finalize = st_icon_finalize;
actor_class->get_preferred_height = st_icon_get_preferred_height;
actor_class->get_preferred_width = st_icon_get_preferred_width;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]