Fixed small bug with ~ in r_file_globsearch ()

This commit is contained in:
cyanpencil 2018-07-26 16:49:56 +02:00 committed by Anton Kochkov
parent 360dfebbdf
commit c8be0802ea

View File

@ -1078,11 +1078,11 @@ R_API RList* r_file_globsearch (char *globbed_path, int maxdepth) {
if (last_slash) {
glob_ptr = last_slash + 1;
if (globbed_path[0] == '~') {
char *rpath = r_str_nlen (globbed_path + 2, last_slash - globbed_path - 1);
path = r_str_home (rpath);
char *rpath = r_str_newlen (globbed_path + 2, last_slash - globbed_path - 1);
path = r_str_home (rpath ? : "");
free (rpath);
} else {
path = r_str_nlen (globbed_path, last_slash - globbed_path + 1);
path = r_str_newlen (globbed_path, last_slash - globbed_path + 1);
}
} else {
glob_ptr = globbed_path;