summaryrefslogtreecommitdiffstats
path: root/Modules/mmapmodule.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-15 17:25:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-15 17:25:58 (GMT)
commitd0ebc75e7368cc4b1a8e504674feabc98f8fc5fd (patch)
tree1c29a4b62e0d0240180ad34a5e073d060bb7cc3d /Modules/mmapmodule.c
parent3988ed8e6f06ba8474a7f120d7f10f2a4c479f29 (diff)
downloadcpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.zip
cpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.tar.gz
cpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.tar.bz2
Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1
Diffstat (limited to 'Modules/mmapmodule.c')
-rw-r--r--Modules/mmapmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index ef026b2..f3b2f50 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -1300,6 +1300,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
else
m_obj->size = low;
#endif
+ m_obj->size -= offset;
} else {
m_obj->size = map_size;
}