[Python-Dev] [Python-checkins] cpython: avoid unitialized memory (original) (raw)
Eric V. Smith eric at trueblade.com
Fri May 4 10:21:35 CEST 2012
- Previous message: [Python-Dev] cpython: Issue #14127: Add ns= parameter to utime, futimes, and lutimes.
- Next message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 5/4/2012 1:14 AM, benjamin.peterson wrote:
http://hg.python.org/cpython/rev/b0deafca6c02 changeset: 76743:b0deafca6c02 user: Benjamin Peterson <benjamin at python.org> date: Fri May 04 01:14:03 2012 -0400 summary: avoid unitialized memory
files: Modules/posixmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3576,7 +3576,7 @@ splitpylongtosandns(PyObject *pylong, timet *s, long *ns) { int result = 0; - PyObject *divmod; + PyObject *divmod = NULL; divmod = PyNumberDivmod(pylong, billion);
How is that uninitialized if it's being set on the next line?
- Previous message: [Python-Dev] cpython: Issue #14127: Add ns= parameter to utime, futimes, and lutimes.
- Next message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]