aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-file-helpers.c
diff options
context:
space:
mode:
authorCrispin Flowerday <gnome@flowerday.cx>2005-11-11 05:32:36 +0800
committerCrispin Flowerday <crispin@src.gnome.org>2005-11-11 05:32:36 +0800
commitf38b7045271aa3b38a6dda357726091b413c1be0 (patch)
tree8343eb4c448c662ec9a6a81bc8ce5551e0a07a31 /lib/ephy-file-helpers.c
parent8fa636f36bf250aa729409de2d77c562f809eebc (diff)
downloadgsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar.gz
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar.bz2
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar.lz
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar.xz
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.tar.zst
gsoc2013-epiphany-f38b7045271aa3b38a6dda357726091b413c1be0.zip
lib/ephy-file-helpers.c lib/widgets/ephy-location-entry.c
2005-11-10 Crispin Flowerday <gnome@flowerday.cx> * lib/ephy-file-helpers.c * lib/widgets/ephy-location-entry.c * src/ephy-session.c * src/bookmarks/ephy-bookmarks-import.c: Remove some unused variables
Diffstat (limited to 'lib/ephy-file-helpers.c')
-rw-r--r--lib/ephy-file-helpers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c
index db8950f20..7a6669ee7 100644
--- a/lib/ephy-file-helpers.c
+++ b/lib/ephy-file-helpers.c
@@ -110,7 +110,7 @@ ephy_file_downloads_dir (void)
char *
ephy_file_get_downloads_dir (void)
{
- char *path = NULL, *download_dir, *home_dir, *expanded;
+ char *download_dir, *expanded;
download_dir = eel_gconf_get_string (CONF_STATE_DOWNLOAD_DIR);
@@ -136,6 +136,7 @@ ephy_file_get_downloads_dir (void)
/* Emergency download destination */
if (download_dir == NULL)
{
+ const char *home_dir;
home_dir = g_get_home_dir ();
download_dir = g_strdup (home_dir != NULL ? home_dir : "/");
}