- Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
This commit is contained in:
parent
edb5e1e09e
commit
8212a82371
|
@ -749,11 +749,13 @@ PyAPI_FUNC(void) _Py_AddToAllObjects(PyObject *, int force);
|
||||||
((PyObject*)(op))->ob_refcnt++)
|
((PyObject*)(op))->ob_refcnt++)
|
||||||
|
|
||||||
#define Py_DECREF(op) \
|
#define Py_DECREF(op) \
|
||||||
if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \
|
do { \
|
||||||
--((PyObject*)(op))->ob_refcnt != 0) \
|
if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \
|
||||||
_Py_CHECK_REFCNT(op) \
|
--((PyObject*)(op))->ob_refcnt != 0) \
|
||||||
else \
|
_Py_CHECK_REFCNT(op) \
|
||||||
_Py_Dealloc((PyObject *)(op))
|
else \
|
||||||
|
_Py_Dealloc((PyObject *)(op)) \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
|
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
|
||||||
* and tp_dealloc implementatons.
|
* and tp_dealloc implementatons.
|
||||||
|
|
|
@ -207,6 +207,8 @@ Core and Builtins
|
||||||
- Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
|
- Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
|
||||||
short file names.
|
short file names.
|
||||||
|
|
||||||
|
- Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
|
||||||
|
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue