summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 0d873d1..4731b81 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -382,6 +382,12 @@ typedef struct {
char pipech2[2];
__int64 startpos;
BOOL utf8translations;
+#ifndef _DEBUG
+ /* padding hack. 8 byte extra length observed at
+ * runtime, for 32 and 64 bits when not in _DEBUG
+ */
+ __int32 _padding[2];
+#endif
#endif /* _SAFECRT_IMPL */
} ioinfo;
#endif