Commit e93a3f65 e93a3f65ac5f41905f4f0cd545731d403ba5f7c3 by Sergey Poznyakoff

(_url_path_init): Missed typecast.

1 parent 675b0afa
......@@ -273,7 +273,7 @@ _url_path_init (url_t url)
mu_scheme_autodetect_p (name, &path);
name = strdup (path);
free (url->name);
url->name = name;
url->name = (char*) name;
/* TYPE */
url->_destroy = url_path_destroy;
......