summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfsfileengine.cpp
diff options
context:
space:
mode:
authorPeter Kümmel <syntheticpp@gmx.net>2013-02-22 08:58:41 (GMT)
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-01 08:55:51 (GMT)
commit2fd65bf3f5015fc9ff830b4a8709fe65d9644f17 (patch)
tree06c06774ef7da46271998de239fea66b14ff8627 /src/corelib/io/qfsfileengine.cpp
parentc4c5e8c595ce7c51094a7eff330b01e3ffbf05c0 (diff)
downloadQt-2fd65bf3f5015fc9ff830b4a8709fe65d9644f17.zip
Qt-2fd65bf3f5015fc9ff830b4a8709fe65d9644f17.tar.gz
Qt-2fd65bf3f5015fc9ff830b4a8709fe65d9644f17.tar.bz2
Fix CreateFileMapping() error handling
CreateFileMapping() returns NULL in case of an error. The patch corrects the wrong testing on INVALID_HANDLE_VALUE, and sets NULL for invalid handles. Change-Id: Iaab4945ed88ee92bbf9a0871e95a5820dd1a56ed (cherry-picked from qtbase/1a8f67938c4146614fec3788c7868dc1a314cc84) Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/corelib/io/qfsfileengine.cpp')
-rw-r--r--src/corelib/io/qfsfileengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfsfileengine.cpp b/src/corelib/io/qfsfileengine.cpp
index c2d70b6..929a369 100644
--- a/src/corelib/io/qfsfileengine.cpp
+++ b/src/corelib/io/qfsfileengine.cpp
@@ -132,7 +132,7 @@ void QFSFileEnginePrivate::init()
#ifdef Q_OS_WIN
fileAttrib = INVALID_FILE_ATTRIBUTES;
fileHandle = INVALID_HANDLE_VALUE;
- mapHandle = INVALID_HANDLE_VALUE;
+ mapHandle = NULL;
#ifndef Q_OS_WINCE
cachedFd = -1;
#endif