diff mbox series

[committed] libstdc++: Re-enable workaround for _wstat64 bug [PR 88881]

Message ID YCQQnMV5fue21wnT@redhat.com
State New
Headers show
Series [committed] libstdc++: Re-enable workaround for _wstat64 bug [PR 88881] | expand

Commit Message

Jonathan Wakely Feb. 10, 2021, 4:58 p.m. UTC
This wasn't fixed upstream for mingw-w64 so we still need the
workaround.

libstdc++-v3/ChangeLog:

	PR libstdc++/88881
	* src/c++17/fs_ops.cc (fs::status): Re-enable workaround.

Tested x86_64-w64-mingw32. Committed to trunk.
commit 3df5b249b3c81e95cdcb293a388155ae5b168f9e
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Feb 10 16:51:34 2021

    libstdc++: Re-enable workaround for _wstat64 bug [PR 88881]
    
    This wasn't fixed upstream for mingw-w64 so we still need the
    workaround.
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/88881
            * src/c++17/fs_ops.cc (fs::status): Re-enable workaround.

Comments

Jonathan Wakely Feb. 12, 2021, 3:51 p.m. UTC | #1
On 10/02/21 16:58 +0000, Jonathan Wakely wrote:
>This wasn't fixed upstream for mingw-w64 so we still need the
>workaround.
>
>libstdc++-v3/ChangeLog:
>
>	PR libstdc++/88881
>	* src/c++17/fs_ops.cc (fs::status): Re-enable workaround.

Oops, the same change is needed in symlink_status as well. 

Tested x86_64-w64-mingw32. Committed to trunk.
diff mbox series

Patch

diff --git a/libstdc++-v3/src/c++17/fs_ops.cc b/libstdc++-v3/src/c++17/fs_ops.cc
index 7deb4c33447..3817655471c 100644
--- a/libstdc++-v3/src/c++17/fs_ops.cc
+++ b/libstdc++-v3/src/c++17/fs_ops.cc
@@ -1462,7 +1462,6 @@  fs::status(const fs::path& p, error_code& ec) noexcept
   auto str = p.c_str();
 
 #if _GLIBCXX_FILESYSTEM_IS_WINDOWS
-#if ! defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 6
   // stat() fails if there's a trailing slash (PR 88881)
   path p2;
   if (p.has_relative_path() && !p.has_filename())
@@ -1479,7 +1478,6 @@  fs::status(const fs::path& p, error_code& ec) noexcept
 	}
       str = p2.c_str();
     }
-#endif
 #endif
 
   stat_type st;