]> granicus.if.org Git - python/commitdiff
Merged revisions 71159 via svnmerge from
authorMatthias Klose <doko@ubuntu.com>
Sat, 4 Apr 2009 15:54:25 +0000 (15:54 +0000)
committerMatthias Klose <doko@ubuntu.com>
Sat, 4 Apr 2009 15:54:25 +0000 (15:54 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71159 | matthias.klose | 2009-04-04 17:51:23 +0200 (Sa, 04 Apr 2009) | 2 lines

  - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
........

Include/object.h
Misc/NEWS

index c71bca64be7de4476ac875cb79ceb55ec325ae31..13795cddcfec3ff649ea8207ad88fe02f809cabc 100644 (file)
@@ -651,11 +651,13 @@ PyAPI_FUNC(void) _Py_AddToAllObjects(PyObject *, int force);
        ((PyObject*)(op))->ob_refcnt++)
 
 #define Py_DECREF(op)                                  \
-       if (_Py_DEC_REFTOTAL  _Py_REF_DEBUG_COMMA       \
-           --((PyObject*)(op))->ob_refcnt != 0)                \
-               _Py_CHECK_REFCNT(op)                    \
-       else                                            \
-               _Py_Dealloc((PyObject *)(op))
+       do {                                            \
+           if (_Py_DEC_REFTOTAL  _Py_REF_DEBUG_COMMA   \
+               --((PyObject*)(op))->ob_refcnt != 0)    \
+                   _Py_CHECK_REFCNT(op)                \
+           else                                        \
+               _Py_Dealloc((PyObject *)(op))           \
+        } while (0)
 
 /* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
  * and tp_dealloc implementatons.
index 616d43b83d09f4a25d539c587b71fee1a2be0ac0..0774988c9955b958c5e3380e9eb6c81bb0f3b7dc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,8 @@ Core and Builtins
 - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
   short file names.
 
+- Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
+
 Library
 -------