]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Issue 0020472: An error in SALOMEDSImpl_Tool::Exists
authorvsr <vsr@opencascade.com>
Wed, 9 Sep 2009 16:51:43 +0000 (16:51 +0000)
committervsr <vsr@opencascade.com>
Wed, 9 Sep 2009 16:51:43 +0000 (16:51 +0000)
src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx

index 898d8d67e9cc35266e93123b7348dcb3db482f3b..a77876658c589c63644e4d3a3a28bcc0872abbc7 100644 (file)
@@ -54,7 +54,7 @@ bool Exists(const string thePath)
 {
 #ifdef WIN32 
   if (  GetFileAttributes (  thePath.c_str()  ) == 0xFFFFFFFF  ) { 
-    if (  GetLastError () != ERROR_FILE_NOT_FOUND  ) {
+    if (  GetLastError () == ERROR_FILE_NOT_FOUND  ) {
       return false;
     }
   }