diff options
author | Xan Lopez <xan@igalia.com> | 2012-05-09 19:25:49 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-05-09 19:25:49 +0800 |
commit | f493e1e059e95b75aef79e46226f47a2608a79f2 (patch) | |
tree | e5478e7785787cea0cc78d890c6c8e87d6c561ea /lib | |
parent | 5a9e27209319069f50baa8a8ada31ee661358449 (diff) | |
download | gsoc2013-epiphany-f493e1e059e95b75aef79e46226f47a2608a79f2.tar.gz gsoc2013-epiphany-f493e1e059e95b75aef79e46226f47a2608a79f2.tar.zst gsoc2013-epiphany-f493e1e059e95b75aef79e46226f47a2608a79f2.zip |
ephy-web-app-utils: remove unused variable
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-web-app-utils.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ephy-web-app-utils.c b/lib/ephy-web-app-utils.c index 023736b8e..7739a5328 100644 --- a/lib/ephy-web-app-utils.c +++ b/lib/ephy-web-app-utils.c @@ -303,7 +303,6 @@ char * ephy_web_application_create (const char *address, const char *name, GdkPixbuf *icon) { char *profile_dir = NULL; - char *toolbar_path = NULL; char *desktop_file_path = NULL; /* If there's already a WebApp profile for the contents of this @@ -328,9 +327,6 @@ ephy_web_application_create (const char *address, const char *name, GdkPixbuf *i desktop_file_path = create_desktop_file (address, profile_dir, name, icon); out: - if (toolbar_path) - g_free (toolbar_path); - if (profile_dir) g_free (profile_dir); |