Skip to content
Snippets Groups Projects
Commit 35348fe4 authored by SR_team's avatar SR_team :speech_balloon:
Browse files

Do not redirect NUL

parent a6059809
No related branches found
No related tags found
No related merge requests found
Pipeline #411168919 passed
......@@ -787,11 +787,11 @@ private:
if ( isAlreadyRedirected( file ) ) return std::basic_string<CharType>();
if constexpr ( std::is_same<CharType, char>::value ) {
if ( file && ( !std::strcmp( file, "." ) || !std::strcmp( file, ".." ) || !std::strcmp( file, "CONIN$" ) ||
!std::strcmp( file, "CONOUT$" ) ) )
!std::strcmp( file, "CONOUT$" ) || !std::strcmp( file, "NUL" ) ) )
return std::basic_string<CharType>();
} else {
if ( file && ( !std::wcscmp( file, L"." ) || !std::wcscmp( file, L".." ) || !std::wcscmp( file, L"CONIN$" ) ||
!std::wcscmp( file, L"CONOUT$" ) ) )
!std::wcscmp( file, L"CONOUT$" ) || !std::wcscmp( file, L"NUL" ) ) )
return std::basic_string<CharType>();
}
auto relPath = getRelPath( file );
......@@ -873,12 +873,12 @@ private:
std::basic_string<CharType> getFullPath( const CharType *file ) {
if ( !file || ( *file && file[1] == sym::colon() ) ) return file;
if constexpr ( std::is_same<CharType, char>::value ) {
if ( ( !std::strcmp( file, "." ) || !std::strcmp( file, ".." ) || !std::strcmp( file, "CONIN$" ) ||
!std::strcmp( file, "CONOUT$" ) ) )
if ( !std::strcmp( file, "." ) || !std::strcmp( file, ".." ) || !std::strcmp( file, "CONIN$" ) ||
!std::strcmp( file, "CONOUT$" ) || !std::strcmp( file, "NUL" ) )
return file;
} else {
if ( ( !std::wcscmp( file, L"." ) || !std::wcscmp( file, L".." ) || !std::wcscmp( file, L"CONIN$" ) ||
!std::wcscmp( file, L"CONOUT$" ) ) )
if ( !std::wcscmp( file, L"." ) || !std::wcscmp( file, L".." ) || !std::wcscmp( file, L"CONIN$" ) ||
!std::wcscmp( file, L"CONOUT$" ) || !std::wcscmp( file, L"NUL" ) )
return file;
}
return currentFolder_ + file;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment