summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-10-31 16:56:38 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-10-31 16:56:38 +0100
commit763b0d19c94b59b37fa140b8c578f141422e0d25 (patch)
treedee02ef8e3d651117c3f137a168bcd36ebc655a4 /Python/marshal.c
parenta9eb38f02a7c0b5540da84cdf94ef4b56bef1716 (diff)
downloadcpython-git-763b0d19c94b59b37fa140b8c578f141422e0d25.tar.gz
Issue #19437: Fix r_PyLong() of marshal module, stop immediatly at first
failure, don't read any more data
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 4401afb211..411f1e0782 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -612,6 +612,7 @@ r_string(Py_ssize_t n, RFILE *p)
}
p->buf_size = n;
}
+
if (!p->readable) {
assert(p->fp != NULL);
read = fread(p->buf, 1, n, p->fp);
@@ -731,25 +732,31 @@ r_PyLong(RFILE *p)
ob = _PyLong_New(size);
if (ob == NULL)
return NULL;
+
Py_SIZE(ob) = n > 0 ? size : -size;
for (i = 0; i < size-1; i++) {
d = 0;
for (j=0; j < PyLong_MARSHAL_RATIO; j++) {
md = r_short(p);
- if (PyErr_Occurred())
- break;
+ if (PyErr_Occurred()) {
+ Py_DECREF(ob);
+ return NULL;
+ }
if (md < 0 || md > PyLong_MARSHAL_BASE)
goto bad_digit;
d += (digit)md << j*PyLong_MARSHAL_SHIFT;
}
ob->ob_digit[i] = d;
}
+
d = 0;
for (j=0; j < shorts_in_top_digit; j++) {
md = r_short(p);
- if (PyErr_Occurred())
- break;
+ if (PyErr_Occurred()) {
+ Py_DECREF(ob);
+ return NULL;
+ }
if (md < 0 || md > PyLong_MARSHAL_BASE)
goto bad_digit;
/* topmost marshal digit should be nonzero */