summaryrefslogtreecommitdiff
path: root/gtk/gtk_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtk_gui.c')
-rw-r--r--gtk/gtk_gui.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/gtk/gtk_gui.c b/gtk/gtk_gui.c
index a9e428b19..24070bb47 100644
--- a/gtk/gtk_gui.c
+++ b/gtk/gtk_gui.c
@@ -867,14 +867,22 @@ char *path_to_url(const char *path)
char *url_to_path(const char *url)
{
- char *url_path = curl_unescape(url, 0);
char *path;
+ char *respath;
+ url_func_result res; /* result from url routines */
- /* return the absolute path including leading / */
- path = strdup(url_path + (FILE_SCHEME_PREFIX_LEN - 1));
- curl_free(url_path);
+ res = url_path(url, &path);
+ if (res != URL_FUNC_OK) {
+ return NULL;
+ }
- return path;
+ res = url_unescape(path, &respath);
+ free(path);
+ if (res != URL_FUNC_OK) {
+ return NULL;
+ }
+
+ return respath;
}