From 23f3af832c626c45397701efd8c782aaf18a2e8b Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Tue, 21 Dec 2010 22:49:54 +0100 Subject: [PATCH] StIcon: fix typo After having freed pending_texture, we should nullify it, not an unrelated actor. --- src/st/st-icon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st/st-icon.c b/src/st/st-icon.c index 7235dc1a8..6101107f1 100644 --- a/src/st/st-icon.c +++ b/src/st/st-icon.c @@ -149,7 +149,7 @@ st_icon_dispose (GObject *gobject) { clutter_actor_destroy (priv->pending_texture); g_object_unref (priv->pending_texture); - priv->icon_texture = NULL; + priv->pending_texture = NULL; } if (priv->gicon)