[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
STINNER Victor added the comment: Thanks Joannah for the bug report. I fixed the warning on 3.7, 3.8 and master branches. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8, Python 3.9

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset c9a484a1e76384680b90454018389465760dbeae by Victor Stinner in branch '3.7': bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342) (GH-15343) https://github.com/python/cpython/commit/c9a484a1e76384680b90454018389465760dbeae --

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15060 pull_request: https://github.com/python/cpython/pull/15343 ___ Python tracker ___ __

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset 30e5aff5fb0e3841107ddd4539a1f5b8521c80fb by Victor Stinner in branch '3.8': bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342) https://github.com/python/cpython/commit/30e5aff5fb0e3841107ddd4539a1f5b8521c80fb -- __

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15059 pull_request: https://github.com/python/cpython/pull/15342 ___ Python tracker ___ __

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset 18f8dcfa10d8a858b152d12a9ad8fa83b7e967f0 by Victor Stinner in branch 'master': bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) https://github.com/python/cpython/commit/18f8dcfa10d8a858b152d12a9ad8fa83b7e967f0 -- __

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-19 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15051 pull_request: https://github.com/python/cpython/pull/15333 ___ Python tracker ___ __

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-19 Thread STINNER Victor
STINNER Victor added the comment: bpo-37869 has been marked as a duplicate of this issue. -- nosy: +vstinner ___ Python tracker ___ ___

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-16 Thread Hansraj Das
Change by Hansraj Das : -- nosy: +hansrajdas ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-08-16 Thread Hansraj Das
Change by Hansraj Das : -- keywords: +patch pull_requests: +15035 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15309 ___ Python tracker ___

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-07-31 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- type: behavior -> compile error ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue37732] Possible uninitialized variable in Objects/obmalloc.c

2019-07-31 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : Here is a compilation warning I got; Objects/obmalloc.c: In function ‘_PyObject_Malloc’: Objects/obmalloc.c:1646:16: warning: ‘ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] return ptr; ^~~ We can investiga