Index: src/chext/TShellExtData.cpp =================================================================== diff -u -N -r633a533cb6e741d44fe28aa56339e1d2709b1b27 -r5e13d7ff5d449cdb79a004e3e5239fc9777f1f9f --- src/chext/TShellExtData.cpp (.../TShellExtData.cpp) (revision 633a533cb6e741d44fe28aa56339e1d2709b1b27) +++ src/chext/TShellExtData.cpp (.../TShellExtData.cpp) (revision 5e13d7ff5d449cdb79a004e3e5239fc9777f1f9f) @@ -193,7 +193,7 @@ case TDestinationPathInfo::eDstType_Specified: { // here we don't check if this is a directory or if it exists - it's assumed that user knows what is he doing - if(!spMenuItem->GetDestinationPathInfo().GetDefaultDestinationPath().IsEmpty()) + if(spMenuItem->GetDestinationPathInfo().GetDefaultDestinationPath().IsEmpty()) return false; break; } @@ -380,7 +380,7 @@ case TDestinationPathInfo::eDstType_Specified: { // here we don't check if this is a directory or if it exists - it's assumed that user knows what is he doing - if(!spMenuItem->GetDestinationPathInfo().GetDefaultDestinationPath().IsEmpty()) + if(spMenuItem->GetDestinationPathInfo().GetDefaultDestinationPath().IsEmpty()) return false; tDestinationPath = spMenuItem->GetDestinationPathInfo().GetDefaultDestinationPath(); break;