[issue38532] Missing decrefs in the _ctypes module

2020-01-03 Thread Thomas Wouters
Change by Thomas Wouters : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue38532] Missing decrefs in the _ctypes module

2020-01-03 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset aa3efea9c5f4d25afc3fa4cfd5e6d789943893c9 by T. Wouters (Miss Islington (bot)) in branch '3.8': bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-17811) https://github.com/python/cpython/commit/aa3efea9c5f4d25afc3fa4cfd5e6d789943893c9

[issue38532] Missing decrefs in the _ctypes module

2020-01-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +17238 pull_request: https://github.com/python/cpython/pull/17811 ___ Python tracker ___

[issue38532] Missing decrefs in the _ctypes module

2020-01-03 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset e02ab59fdffa0bb841182c30ef1355c89578d945 by T. Wouters (Zackery Spytz) in branch 'master': bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-16857) https://github.com/python/cpython/commit/e02ab59fdffa0bb841182c30ef1355c89578d945

[issue38532] Missing decrefs in the _ctypes module

2019-10-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16404 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16857 ___ Python tracker ___

[issue38532] Missing decrefs in the _ctypes module

2019-10-19 Thread Zackery Spytz
New submission from Zackery Spytz : In PyCFuncPtr_FromDll(), there are two missing calls to Py_DECREF() if PySys_Audit() fails! -- components: Extension Modules messages: 354980 nosy: ZackerySpytz priority: normal severity: normal status: open title: Missing decrefs in the _ctypes