Commit 32322843 authored by Vinay Sajip's avatar Vinay Sajip

Removed breaking typo accidentally introduced during merge with 3.2.

parent 65897a38
...@@ -1320,8 +1320,6 @@ marshal_load(PyObject *self, PyObject *f) ...@@ -1320,8 +1320,6 @@ marshal_load(PyObject *self, PyObject *f)
{ {
PyObject *data, *result; PyObject *data, *result;
RFILE rf; RFILE rf;
char *p;
int n;
/* /*
* Make a call to the read method, but read zero bytes. * Make a call to the read method, but read zero bytes.
...@@ -1338,12 +1336,10 @@ marshal_load(PyObject *self, PyObject *f) ...@@ -1338,12 +1336,10 @@ marshal_load(PyObject *self, PyObject *f)
result = NULL; result = NULL;
} }
else { else {
rf.strings = PyList_New(0);
rf.depth = 0; rf.depth = 0;
rf.fp = NULL; rf.fp = NULL;
rf.readable = f; rf.readable = f;
result = read_object(&rf); result = read_object(&rf);
Py_DECREF(rf.strings);
} }
Py_DECREF(data); Py_DECREF(data);
return result; return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment