aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features
diff options
context:
space:
mode:
authorSankar P <psankar@novell.com>2005-08-29 14:33:58 +0800
committerSankarasivasubramanian Pasupathilingam <psankar@src.gnome.org>2005-08-29 14:33:58 +0800
commita43f0b190533bfa8eec5d83a1108bf74a6859e71 (patch)
tree0b43cab7a72d6f92d05d2c352e49657887374859 /plugins/groupwise-features
parent5994fe010ebb2d063a5913eecfc4596a219c3f5b (diff)
downloadgsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar.gz
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar.bz2
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar.lz
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar.xz
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.tar.zst
gsoc2013-evolution-a43f0b190533bfa8eec5d83a1108bf74a6859e71.zip
Replaced g_object_unref with g_free since priv was created using g_new.
2005-08-25 Sankar P <psankar@novell.com> * proxy.c: (proxy_dialog_finalize): Replaced g_object_unref with g_free since priv was created using g_new. Fixes #312309 svn path=/trunk/; revision=30281
Diffstat (limited to 'plugins/groupwise-features')
-rw-r--r--plugins/groupwise-features/ChangeLog6
-rw-r--r--plugins/groupwise-features/proxy.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index 16ac13ba5c..6832dad3f6 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-25 Sankar P <psankar@novell.com>
+
+ * proxy.c: (proxy_dialog_finalize):
+ Replaced g_object_unref with g_free since priv was created using g_new.
+ Fixes #312309
+
2005-08-23 Not Zed <NotZed@Ximian.com>
* proxy-login.c (proxy_get_password): return the right type.
diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c
index ab48483dc8..6e14c6ab98 100644
--- a/plugins/groupwise-features/proxy.c
+++ b/plugins/groupwise-features/proxy.c
@@ -162,7 +162,7 @@ proxy_dialog_finalize (GObject *object)
free_proxy_list (priv->proxy_list);
g_free (priv->help_section);
g_object_unref (priv->xml_tab);
- g_object_unref (prd->priv);
+ g_free (prd->priv);
prd->priv = NULL;
}