]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
untested changes...
[wxWidgets.git] / src / common / file.cpp
index f563a5cd3db44264b56468ca01dca14f8ae169c8..3cd684587a044788484f9ef89e25784831ef4d78 100644 (file)
@@ -502,7 +502,7 @@ bool wxTempFile::Open(const wxString& strName)
     int access = wxS_DEFAULT;
 #ifdef __UNIX__
     // create the file with the same mode as the original one under Unix
-    mode_t umaskOld;
+    mode_t umaskOld = 0; // just to suppress compiler warning
     bool changedUmask;
 
     struct stat st;
@@ -523,11 +523,11 @@ bool wxTempFile::Open(const wxString& strName)
     {
         // file probably didn't exist, just create with default mode _using_
         // user's umask (new files creation should respet umask)
-        changedUmask = TRUE;
+        changedUmask = FALSE;
     }
 #endif // Unix
 
-    bool ok =  m_file.Open(m_strTemp, wxFile::write, access);
+    bool ok = m_file.Open(m_strTemp, wxFile::write, access);
 
 #ifdef __UNIX__
     if ( changedUmask )