aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdm-dialog.c
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 /src/pdm-dialog.c
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.
Diffstat (limited to 'src/pdm-dialog.c')
-rwxr-xr-xsrc/pdm-dialog.c1
1 files changed, 1 insertions, 0 deletions
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);