summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-23 20:12:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-23 20:12:36 (GMT)
commitdd52c5a1c46b4d8e42e5e7a00f9b307f113de08d (patch)
tree0243f46698dd33a6f3e728cb5a61cc26b6187be6 /Modules
parent6787a3806ee6a85a6f21ede70c10e15a6df267c4 (diff)
parent6188d09f1c27f0ba5d4c369677a308fe118e9d5a (diff)
downloadcpython-dd52c5a1c46b4d8e42e5e7a00f9b307f113de08d.zip
cpython-dd52c5a1c46b4d8e42e5e7a00f9b307f113de08d.tar.gz
cpython-dd52c5a1c46b4d8e42e5e7a00f9b307f113de08d.tar.bz2
Merge heads
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_pickle.c35
1 files changed, 24 insertions, 11 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index f9aa043..a1819b9 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -700,17 +700,27 @@ _Pickler_ClearBuffer(PicklerObject *self)
}
static void
+_write_size64(char *out, size_t value)
+{
+ out[0] = (unsigned char)(value & 0xff);
+ out[1] = (unsigned char)((value >> 8) & 0xff);
+ out[2] = (unsigned char)((value >> 16) & 0xff);
+ out[3] = (unsigned char)((value >> 24) & 0xff);
+#if SIZEOF_SIZE_T >= 8
+ out[4] = (unsigned char)((value >> 32) & 0xff);
+ out[5] = (unsigned char)((value >> 40) & 0xff);
+ out[6] = (unsigned char)((value >> 48) & 0xff);
+ out[7] = (unsigned char)((value >> 56) & 0xff);
+#else
+ out[4] = out[5] = out[6] = out[7] = 0;
+#endif
+}
+
+static void
_Pickler_WriteFrameHeader(PicklerObject *self, char *qdata, size_t frame_len)
{
- qdata[0] = (unsigned char)FRAME;
- qdata[1] = (unsigned char)(frame_len & 0xff);
- qdata[2] = (unsigned char)((frame_len >> 8) & 0xff);
- qdata[3] = (unsigned char)((frame_len >> 16) & 0xff);
- qdata[4] = (unsigned char)((frame_len >> 24) & 0xff);
- qdata[5] = (unsigned char)((frame_len >> 32) & 0xff);
- qdata[6] = (unsigned char)((frame_len >> 40) & 0xff);
- qdata[7] = (unsigned char)((frame_len >> 48) & 0xff);
- qdata[8] = (unsigned char)((frame_len >> 56) & 0xff);
+ qdata[0] = FRAME;
+ _write_size64(qdata + 1, frame_len);
}
static int
@@ -2017,7 +2027,7 @@ save_bytes(PicklerObject *self, PyObject *obj)
int i;
header[0] = BINBYTES8;
for (i = 0; i < 8; i++) {
- header[i+1] = (unsigned char)((size >> (8 * i)) & 0xff);
+ _write_size64(header + 1, size);
}
len = 8;
}
@@ -2131,7 +2141,7 @@ write_utf8(PicklerObject *self, char *data, Py_ssize_t size)
header[0] = BINUNICODE8;
for (i = 0; i < 8; i++) {
- header[i+1] = (unsigned char)((size >> (8 * i)) & 0xff);
+ _write_size64(header + 1, size);
}
len = 9;
}
@@ -2940,6 +2950,9 @@ save_frozenset(PicklerObject *self, PyObject *obj)
return -1;
iter = PyObject_GetIter(obj);
+ if (iter == NULL) {
+ return -1;
+ }
for (;;) {
PyObject *item;