From 1a4845e2aedded75f76431d40cfd1c4a0dda429d Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 00:12:36 -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 f8f7b571..f088db62 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -7,6 +7,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_) { int rv; struct stat initial_st; + struct stat lower_st; rv = fs::lstat(path_,&initial_st); if(rv == -1)