diff options
author | Jean-François Rameau <jframeau@cvs.gnome.org> | 2005-01-11 02:11:16 +0800 |
---|---|---|
committer | Jean-François Rameau <jframeau@src.gnome.org> | 2005-01-11 02:11:16 +0800 |
commit | 117d167e3616fd103c72d3787829fd14eacdae84 (patch) | |
tree | fcb4bf094209bff885641f5deb60cfd1c1dd430f /embed/print-dialog.c | |
parent | 177dbe4d6f2ca0fb0cf787dad410a526fd6a6149 (diff) | |
download | gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar.gz gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar.bz2 gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar.lz gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar.xz gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.tar.zst gsoc2013-epiphany-117d167e3616fd103c72d3787829fd14eacdae84.zip |
Fix a mem leak.
2005-01-10 Jean-François Rameau <jframeau@cvs.gnome.org>
* embed/print-dialog.c: (ephy_print_get_print_info):
Fix a mem leak.
Diffstat (limited to 'embed/print-dialog.c')
-rwxr-xr-x | embed/print-dialog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embed/print-dialog.c b/embed/print-dialog.c index 4b11890e8..8a0fe264d 100755 --- a/embed/print-dialog.c +++ b/embed/print-dialog.c @@ -230,6 +230,7 @@ ephy_print_get_print_info (void) g_free (converted); } } + g_free (filename); /* fallback */ if (fname == NULL) |