From: Vinay Sajip Date: Sat, 2 Jul 2011 17:42:21 +0000 (+0100) Subject: Correct uninitialized data problem in marshal code. X-Git-Tag: v3.3.0a1~1980^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aac0f75b3b28513c45116534720e66b0262e2e72;p=thirdparty%2FPython%2Fcpython.git Correct uninitialized data problem in marshal code. --- diff --git a/Python/marshal.c b/Python/marshal.c index c749bb335766..35fcd3afb3d2 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1339,6 +1339,7 @@ marshal_load(PyObject *self, PyObject *f) rf.depth = 0; rf.fp = NULL; rf.readable = f; + rf.current_filename = NULL; result = read_object(&rf); } Py_DECREF(data);