From b301f34b65ed0ca3243515bec3bba1902fb5e5e8 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 09:08:58 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index 96c3b117..c8aaf8d0 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -18,7 +18,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_) if(rv == -1) return {}; - tmp_path = path_; + tmp_path = can_path; while(tmp_path != "/") { rv = fs::lstat(tmp_path.parent_path(),&tmp_st);