src/corelib/io/qfsfileengine_unix.cpp
changeset 22 79de32ba3296
parent 19 fcece45ef507
child 30 5dc02b23752f
--- a/src/corelib/io/qfsfileengine_unix.cpp	Mon May 03 13:17:34 2010 +0300
+++ b/src/corelib/io/qfsfileengine_unix.cpp	Fri May 14 16:40:13 2010 +0300
@@ -518,9 +518,7 @@
                     if ((st.st_mode & S_IFMT) != S_IFDIR)
                         return false;
                 } else if (QT_MKDIR(chunk, 0777) != 0) {
-                    //QTP: workaround for QT-3141
-                    if (errno != EEXIST)
-                        return false;
+                    return false;
                 }
             }
         }