Commit dc57ec18 dc57ec1899b7ba2608ba0855b236704f1936b0a6 by Sergey Poznyakoff

(mh_expand_name): Correctly handle full and relative pathname specifications.

1 parent 7b5f1106
......@@ -342,15 +342,31 @@ mh_expand_name (const char *base, const char *name, int is_folder)
tmp = mu_tilde_expansion (name, "/", NULL);
if (tmp[0] == '+')
name = tmp + 1;
else if (strncmp (tmp, "../", 3) == 0 || strncmp (tmp, "./", 2) == 0)
{
char *cwd = mu_getcwd ();
asprintf (&name, "%s/%s", cwd, tmp);
free (cwd);
free (tmp);
tmp = NULL;
}
else
name = tmp;
if (!base)
base = mu_path_folder_dir;
if (is_folder)
asprintf (&p, "mh:%s/%s", base, name);
{
if (name[0] == '/')
asprintf (&p, "mh:%s", name);
else
asprintf (&p, "mh:%s/%s", base, name);
}
else if (name[0] != '/')
asprintf (&p, "%s/%s", base, name);
else
return name;
free (tmp);
return p;
}
......