[Python-Dev] [Python-checkins] cpython: avoid unitialized memory (original) (raw)
Stephen J. Turnbull stephen at xemacs.org
Fri May 4 14:33:15 CEST 2012
- Previous message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Next message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Eric V. Smith writes:
- PyObject *divmod;
- PyObject *divmod = NULL; divmod = PyNumber_Divmod(py_long, billion);
How is that uninitialized if it's being set on the next line?
Maybe they finally developed a Sufficiently Stupid Compiler?
- Previous message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Next message: [Python-Dev] [Python-checkins] cpython: avoid unitialized memory
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]