Skip to content

Commit 0235b1e

Browse files
committed
vstdlib: remove old shitty osversion
1 parent 226d22b commit 0235b1e

File tree

3 files changed

+2
-428
lines changed

3 files changed

+2
-428
lines changed

filesystem/filesystem_stdio.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -696,6 +696,7 @@ int CFileSystem_Stdio::FS_stat( const char *pathT, struct _stat *buf, bool *pbLo
696696
int rt = _stat( path, buf );
697697

698698
// Workaround bug wherein stat() randomly fails on Windows XP. See comment on function.
699+
/*
699700
#if defined(_WIN32) && defined(FILESYSTEM_MSVC2015_STAT_BUG_WORKAROUND)
700701
if ( rt == -1 )
701702
{
@@ -706,6 +707,7 @@ int CFileSystem_Stdio::FS_stat( const char *pathT, struct _stat *buf, bool *pbLo
706707
}
707708
}
708709
#endif // defined(_WIN32) && defined(FILESYSTEM_MSVC2015_STAT_BUG_WORKAROUND)
710+
*/
709711

710712
#if defined(LINUX) || defined(PLATFORM_BSD)
711713
if ( rt == -1 )

0 commit comments

Comments
 (0)