Index: src/libchcore/TPath.cpp =================================================================== diff -u -N -r591f291e22d2ece89acb266c8aa0b05c257a407c -r3fc1109991e7311d6b1e34ef0b730f9b4e1fd42a --- src/libchcore/TPath.cpp (.../TPath.cpp) (revision 591f291e22d2ece89acb266c8aa0b05c257a407c) +++ src/libchcore/TPath.cpp (.../TPath.cpp) (revision 3fc1109991e7311d6b1e34ef0b730f9b4e1fd42a) @@ -507,11 +507,11 @@ // ============================================================================ void TSmartPath::AddLengthExtension() { - if(!HasLengthExtension()) - { - PrepareToWrite(); - m_pPath->m_strPath.insert(0, _T("\\\\?\\")); - } + if(!HasLengthExtension()) + { + PrepareToWrite(); + m_pPath->m_strPath.insert(0, _T("\\\\?\\")); + } } // ============================================================================ @@ -522,11 +522,11 @@ // ============================================================================ void TSmartPath::DeleteLengthExtension() { - if(HasLengthExtension()) - { - PrepareToWrite(); - m_pPath->m_strPath.erase(m_pPath->m_strPath.begin(), m_pPath->m_strPath.begin() + 4); - } + if(HasLengthExtension()) + { + PrepareToWrite(); + m_pPath->m_strPath.erase(m_pPath->m_strPath.begin(), m_pPath->m_strPath.begin() + 4); + } } // ============================================================================