mirror of
https://github.com/radareorg/radare2.git
synced 2025-04-03 01:52:04 +00:00
Fixed small bug with ~ in r_file_globsearch ()
This commit is contained in:
parent
360dfebbdf
commit
c8be0802ea
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user