From 558090bd31d69f3b6f97ad86cac2e26c76bc7201 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 08:25:01 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index 76794667..3be92472 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -14,6 +14,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_) if(rv == -1) return {}; + tmp_path = path_; while(tmp_path != "/") { rv = fs::lstat(tmp_path.parent_path(),&tmp_st);