From 18c8f5f46f18a4f2be330cfc850f6e18a0742e98 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 18 Jan 2014 21:23:02 +0000 Subject: Let the frontend construct the correct URL for the default search ico. This fixes bug #2057 --- desktop/searchweb.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'desktop') diff --git a/desktop/searchweb.c b/desktop/searchweb.c index 30b424cb3..d42919d2d 100644 --- a/desktop/searchweb.c +++ b/desktop/searchweb.c @@ -236,14 +236,7 @@ void search_web_retrieve_ico(bool localdefault) if (localdefault) { if (search_default_ico_location == NULL) return; - url = malloc(SLEN("file://") + strlen( - search_default_ico_location) + 1); - if (url == NULL) { - warn_user(messages_get("NoMemory"), 0); - return; - } - strcpy(url, "file://"); - strcat(url, search_default_ico_location); + url = path_to_url(search_default_ico_location); } else { url = search_web_ico_name(); } -- cgit v1.2.3