aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-07-14 16:44:53 +0800
committerXan Lopez <xan@src.gnome.org>2003-07-14 16:44:53 +0800
commit227e58bfb458aa2d2019992d30ae9fb659718660 (patch)
treeae49215d2d69dcc1bce1fef77b63fd5d9286f4cf
parente5e726afd351863297a2b87c64ffeed43a83e430 (diff)
downloadgsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar.gz
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar.bz2
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar.lz
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar.xz
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.tar.zst
gsoc2013-epiphany-227e58bfb458aa2d2019992d30ae9fb659718660.zip
Fix leak.
Fix leak.
-rw-r--r--ChangeLog6
-rwxr-xr-xsrc/pdm-dialog.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6487e8f7b..1d7810fbf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2003-07-14 Xan Lopez <xan@masilla.org>
+ * src/pdm-dialog.c: (pdm_cmd_delete_selection):
+
+ Fix leak.
+
+2003-07-14 Xan Lopez <xan@masilla.org>
+
* lib/widgets/ephy-node-view.c:
(ephy_node_view_select_node_by_key), (ephy_node_view_remove):
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index dc98e28f5..3fc4b68ac 100755
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -397,6 +397,7 @@ pdm_cmd_delete_selection (PdmActionInfo *action)
gtk_tree_model_get_value
(model, &iter, action->data_col, &val);
data = g_value_get_pointer (&val);
+ g_value_unset (&val);
gtk_list_store_remove (GTK_LIST_STORE(model),
&iter);