diff -r 79647526f98c -r 42552535c1ac secureswitools/swisistools/source/sisxlibrary/siscontents.cpp --- a/secureswitools/swisistools/source/sisxlibrary/siscontents.cpp Wed Sep 15 12:20:42 2010 +0300 +++ b/secureswitools/swisistools/source/sisxlibrary/siscontents.cpp Wed Oct 13 14:40:19 2010 +0300 @@ -67,11 +67,7 @@ bool CSISContents::IsSisFile(const std::wstring& aFileName) { TSISStream input; - #ifdef __TOOLS2_LINUX__ std::wstring fileName = FixPathDelimiters(aFileName); - #else - std::wstring fileName = aFileName; - #endif HANDLE file = ::MakeSISOpenFile(fileName.c_str(),GENERIC_READ,OPEN_EXISTING); CSISException::ThrowIf ((INVALID_HANDLE_VALUE == file), CSISException::EFileProblem, std::wstring (L"cannot open ") + fileName); @@ -103,11 +99,7 @@ void CSISContents::Load (const std::wstring& aFileName, TUint64* size) { TSISStream input; - #ifdef __TOOLS2_LINUX__ std::wstring fileName = FixPathDelimiters(aFileName); - #else - std::wstring fileName = aFileName; - #endif HANDLE file = ::MakeSISOpenFile(fileName.c_str(),GENERIC_READ,OPEN_EXISTING); if (INVALID_HANDLE_VALUE == file) {