Browse Source

fs_find_mount_point.cpp

inodecalc
Antonio SJ Musumeci 4 weeks ago
parent
commit
845101a5fb
  1. 2
      src/fs_find_mount_point.cpp

2
src/fs_find_mount_point.cpp

@ -12,7 +12,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_)
rv = fs::lstat(path_,&initial_st);
if(rv == -1)
return -1;
return {};
tmp_path = path_.parent_path();
while(tmp_path != "/")

Loading…
Cancel
Save