From 0a6eafe0778f96d98502bf5ebc71179ac5f2d241 Mon Sep 17 00:00:00 2001 From: "Enno Boland (tox)" Date: Mon, 17 May 2010 11:01:37 +0200 Subject: dl is not needed anymore --- surf.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'surf.c') diff --git a/surf.c b/surf.c index 7b4d9bb..5905c04 100644 --- a/surf.c +++ b/surf.c @@ -128,7 +128,7 @@ buildpath(const char *path) { *p = '/'; } /* creating file (gives error when apath ends with "/") */ - if((f = g_fopen(apath, "a"))) + if((f = fopen(apath, "a"))) fclose(f); return apath; } @@ -138,7 +138,6 @@ cleanup(void) { while(clients) destroyclient(clients); g_free(cookiefile); - g_free(dldir); g_free(scriptfile); g_free(stylefile); } @@ -676,7 +675,6 @@ setup(void) { /* dirs and files */ cookiefile = buildpath(cookiefile); - dldir = buildpath(dldir); scriptfile = buildpath(scriptfile); stylefile = buildpath(stylefile); -- cgit v1.2.3