From: Neal Norwitz Date: Fri, 12 Oct 2007 03:05:19 +0000 (+0000) Subject: Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory X-Git-Tag: v2.6a1~1194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15f26617587cbe53b22c599239767ef95341472f;p=python Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory would be accessed. Will backport. --- diff --git a/Python/marshal.c b/Python/marshal.c index eac4616cc5..897c15ec8a 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1013,6 +1013,7 @@ PyMarshal_ReadLongFromFile(FILE *fp) RFILE rf; rf.fp = fp; rf.strings = NULL; + rf.ptr = rf.end = NULL; return r_long(&rf); } @@ -1086,6 +1087,7 @@ PyMarshal_ReadObjectFromFile(FILE *fp) rf.fp = fp; rf.strings = PyList_New(0); rf.depth = 0; + rf.ptr = rf.end = NULL; result = r_object(&rf); Py_DECREF(rf.strings); return result;