diff options
Diffstat (limited to 'plugins/itip-formatter')
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index f8eca09148..e968a282cd 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,8 @@ +2006-06-09 Chris Heath <chris@heathens.co.nz> + + * itip-view.c (itip_view_destroy): Fix memory leak. + Fixes bug #335423. + 2006-05-31 Chenthill Palanisamy <pchenthill@novell.com> Fixes #340296 diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 21afa00568..8e272ad52b 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -756,11 +756,13 @@ itip_view_destroy (GtkObject *object) g_free (priv->sentby); g_free (priv->delegator); g_free (priv->attendee); + g_free (priv->summary); g_free (priv->location); g_free (priv->status); g_free (priv->comment); g_free (priv->start_tm); g_free (priv->end_tm); + g_free (priv->description); itip_view_clear_upper_info_items (view); itip_view_clear_lower_info_items (view); |