286abe
diff --git a/psutil/_psutil_aix.c b/psutil/_psutil_aix.c
286abe
index 916254d..37a1fb2 100644
286abe
--- a/psutil/_psutil_aix.c
286abe
+++ b/psutil/_psutil_aix.c
286abe
@@ -158,8 +158,8 @@ psutil_proc_name_and_args(PyObject *self, PyObject *args) {
286abe
     py_retlist = Py_BuildValue("OO", py_name, py_args);
286abe
     if (!py_retlist)
286abe
         goto error;
286abe
-    Py_DECREF(py_name);
286abe
-    Py_DECREF(py_args);
286abe
+    Py_CLEAR(py_name);
286abe
+    Py_CLEAR(py_args);
286abe
     return py_retlist;
286abe
 
286abe
 error:
286abe
@@ -389,10 +389,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
     endutxent();
286abe
 
286abe
@@ -449,9 +449,9 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_dev);
286abe
-        Py_DECREF(py_mountp);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_dev);
286abe
+        Py_CLEAR(py_mountp);
286abe
+        Py_CLEAR(py_tuple);
286abe
         mt = getmntent(file);
286abe
     }
286abe
     endmntent(file);
286abe
diff --git a/psutil/_psutil_bsd.c b/psutil/_psutil_bsd.c
286abe
index 9a2ed04..3dc04e0 100644
286abe
--- a/psutil/_psutil_bsd.c
286abe
+++ b/psutil/_psutil_bsd.c
286abe
@@ -152,7 +152,7 @@ psutil_pids(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_pid))
286abe
                 goto error;
286abe
-            Py_DECREF(py_pid);
286abe
+            Py_CLEAR(py_pid);
286abe
             proclist++;
286abe
         }
286abe
         free(orig_address);
286abe
@@ -507,8 +507,8 @@ psutil_proc_open_files(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_tuple))
286abe
                 goto error;
286abe
-            Py_DECREF(py_path);
286abe
-            Py_DECREF(py_tuple);
286abe
+            Py_CLEAR(py_path);
286abe
+            Py_CLEAR(py_tuple);
286abe
         }
286abe
     }
286abe
     free(freep);
286abe
@@ -670,9 +670,9 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_dev);
286abe
-        Py_DECREF(py_mountp);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_dev);
286abe
+        Py_CLEAR(py_mountp);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     free(fs);
286abe
@@ -765,7 +765,7 @@ psutil_net_io_counters(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyDict_SetItemString(py_retdict, ifc_name, py_ifc_info))
286abe
                 goto error;
286abe
-            Py_DECREF(py_ifc_info);
286abe
+            Py_CLEAR(py_ifc_info);
286abe
         }
286abe
         else {
286abe
             continue;
286abe
@@ -840,10 +840,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             fclose(fp);
286abe
             goto error;
286abe
         }
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     fclose(fp);
286abe
@@ -883,10 +883,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             endutxent();
286abe
             goto error;
286abe
         }
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     endutxent();
286abe
diff --git a/psutil/_psutil_linux.c b/psutil/_psutil_linux.c
286abe
index d1f0d14..00212ba 100644
286abe
--- a/psutil/_psutil_linux.c
286abe
+++ b/psutil/_psutil_linux.c
286abe
@@ -232,9 +232,9 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_dev);
286abe
-        Py_DECREF(py_mountp);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_dev);
286abe
+        Py_CLEAR(py_mountp);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
     endmntent(file);
286abe
     return py_retlist;
286abe
@@ -488,10 +488,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
     endutent();
286abe
     return py_retlist;
286abe
diff --git a/psutil/_psutil_osx.c b/psutil/_psutil_osx.c
286abe
index 55dd64c..37f5284 100644
286abe
--- a/psutil/_psutil_osx.c
286abe
+++ b/psutil/_psutil_osx.c
286abe
@@ -795,7 +795,7 @@ psutil_per_cpu_times(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_cputime))
286abe
             goto error;
286abe
-        Py_DECREF(py_cputime);
286abe
+        Py_CLEAR(py_cputime);
286abe
     }
286abe
 
286abe
     ret = vm_deallocate(mach_task_self(), (vm_address_t)info_array,
286abe
@@ -977,9 +977,9 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_dev);
286abe
-        Py_DECREF(py_mountp);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_dev);
286abe
+        Py_CLEAR(py_mountp);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     free(fs);
286abe
@@ -1055,7 +1055,6 @@ psutil_proc_threads(PyObject *self, PyObject *args) {
286abe
     }
286abe
 
286abe
     for (j = 0; j < thread_count; j++) {
286abe
-        py_tuple = NULL;
286abe
         thread_info_count = THREAD_INFO_MAX;
286abe
         kr = thread_info(thread_list[j], THREAD_BASIC_INFO,
286abe
                          (thread_info_t)thinfo_basic, &thread_info_count);
286abe
@@ -1076,7 +1075,7 @@ psutil_proc_threads(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     ret = vm_deallocate(task, (vm_address_t)thread_list,
286abe
@@ -1185,10 +1184,8 @@ psutil_proc_open_files(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_tuple))
286abe
                 goto error;
286abe
-            Py_DECREF(py_tuple);
286abe
-            py_tuple = NULL;
286abe
-            Py_DECREF(py_path);
286abe
-            py_path = NULL;
286abe
+            Py_CLEAR(py_tuple);
286abe
+            Py_CLEAR(py_path);
286abe
             // --- /construct python list
286abe
         }
286abe
     }
286abe
@@ -1368,7 +1365,7 @@ psutil_proc_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
+                Py_CLEAR(py_tuple);
286abe
             }
286abe
             else if (family == AF_UNIX) {
286abe
                 py_laddr = PyUnicode_DecodeFSDefault(
286abe
@@ -1390,9 +1387,9 @@ psutil_proc_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
-                Py_DECREF(py_laddr);
286abe
-                Py_DECREF(py_raddr);
286abe
+                Py_CLEAR(py_tuple);
286abe
+                Py_CLEAR(py_laddr);
286abe
+                Py_CLEAR(py_raddr);
286abe
             }
286abe
         }
286abe
     }
286abe
@@ -1513,7 +1510,7 @@ psutil_net_io_counters(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyDict_SetItemString(py_retdict, ifc_name, py_ifc_info))
286abe
                 goto error;
286abe
-            Py_DECREF(py_ifc_info);
286abe
+            Py_CLEAR(py_ifc_info);
286abe
         }
286abe
         else {
286abe
             continue;
286abe
@@ -1686,7 +1683,7 @@ psutil_disk_io_counters(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyDict_SetItemString(py_retdict, disk_name, py_disk_info))
286abe
                 goto error;
286abe
-            Py_DECREF(py_disk_info);
286abe
+            Py_CLEAR(py_disk_info);
286abe
 
286abe
             CFRelease(parent_dict);
286abe
             IOObjectRelease(parent);
286abe
@@ -1748,10 +1745,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             endutxent();
286abe
             goto error;
286abe
         }
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     endutxent();
286abe
diff --git a/psutil/_psutil_posix.c b/psutil/_psutil_posix.c
286abe
index cc82727..6d9212a 100644
286abe
--- a/psutil/_psutil_posix.c
286abe
+++ b/psutil/_psutil_posix.c
286abe
@@ -324,11 +324,11 @@ psutil_net_if_addrs(PyObject* self, PyObject* args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_tuple);
286abe
-        Py_DECREF(py_address);
286abe
-        Py_DECREF(py_netmask);
286abe
-        Py_DECREF(py_broadcast);
286abe
-        Py_DECREF(py_ptp);
286abe
+        Py_CLEAR(py_tuple);
286abe
+        Py_CLEAR(py_address);
286abe
+        Py_CLEAR(py_netmask);
286abe
+        Py_CLEAR(py_broadcast);
286abe
+        Py_CLEAR(py_ptp);
286abe
     }
286abe
 
286abe
     freeifaddrs(ifaddr);
286abe
diff --git a/psutil/_psutil_sunos.c b/psutil/_psutil_sunos.c
286abe
index c667364..ff635f6 100644
286abe
--- a/psutil/_psutil_sunos.c
286abe
+++ b/psutil/_psutil_sunos.c
286abe
@@ -214,8 +214,8 @@ psutil_proc_environ(PyObject *self, PyObject *args) {
286abe
         if (PyDict_SetItem(py_retdict, py_envname, py_envval) < 0)
286abe
             goto error;
286abe
 
286abe
-        Py_DECREF(py_envname);
286abe
-        Py_DECREF(py_envval);
286abe
+        Py_CLEAR(py_envname);
286abe
+        Py_CLEAR(py_envval);
286abe
     }
286abe
 
286abe
     psutil_free_cstrings_array(env, env_count);
286abe
@@ -576,10 +576,10 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_username);
286abe
-        Py_DECREF(py_tty);
286abe
-        Py_DECREF(py_hostname);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_tty);
286abe
+        Py_CLEAR(py_hostname);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
     endutxent();
286abe
 
286abe
@@ -635,9 +635,9 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_dev);
286abe
-        Py_DECREF(py_mountp);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_dev);
286abe
+        Py_CLEAR(py_mountp);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
     fclose(file);
286abe
     return py_retlist;
286abe
@@ -688,8 +688,7 @@ psutil_per_cpu_times(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_cputime))
286abe
                 goto error;
286abe
-            Py_DECREF(py_cputime);
286abe
-            py_cputime = NULL;
286abe
+            Py_CLEAR(py_cputime);
286abe
         }
286abe
     }
286abe
 
286abe
@@ -745,7 +744,7 @@ psutil_disk_io_counters(PyObject *self, PyObject *args) {
286abe
                 if (PyDict_SetItemString(py_retdict, ksp->ks_name,
286abe
                                          py_disk_info))
286abe
                     goto error;
286abe
-                Py_DECREF(py_disk_info);
286abe
+                Py_CLEAR(py_disk_info);
286abe
             }
286abe
         }
286abe
         ksp = ksp->ks_next;
286abe
@@ -880,8 +879,8 @@ psutil_proc_memory_maps(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_path);
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_path);
286abe
+        Py_CLEAR(py_tuple);
286abe
 
286abe
         // increment pointer
286abe
         p += 1;
286abe
@@ -996,7 +995,7 @@ psutil_net_io_counters(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyDict_SetItemString(py_retdict, ksp->ks_name, py_ifc_info))
286abe
             goto error;
286abe
-        Py_DECREF(py_ifc_info);
286abe
+        Py_CLEAR(py_ifc_info);
286abe
         goto next;
286abe
 
286abe
 next:
286abe
@@ -1189,7 +1188,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
+                Py_CLEAR(py_tuple);
286abe
             }
286abe
         }
286abe
 #if defined(AF_INET6)
286abe
@@ -1232,7 +1231,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
+                Py_CLEAR(py_tuple);
286abe
             }
286abe
         }
286abe
 #endif
286abe
@@ -1240,7 +1239,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
         else if (mibhdr->level == MIB2_UDP || mibhdr->level == MIB2_UDP_ENTRY) {
286abe
             ude = (mib2_udpEntry_t *)databuf.buf;
286abe
             num_ent = mibhdr->len / sizeof(mib2_udpEntry_t);
286abe
-	    assert(num_ent * sizeof(mib2_udpEntry_t) == mibhdr->len);
286abe
+	        assert(num_ent * sizeof(mib2_udpEntry_t) == mibhdr.len);
286abe
             for (i = 0; i < num_ent; i++, ude++) {
286abe
 #ifdef NEW_MIB_COMPLIANT
286abe
                 processed_pid = ude->udpCreationProcess;
286abe
@@ -1271,7 +1270,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
+                Py_CLEAR(py_tuple);
286abe
             }
286abe
         }
286abe
 #if defined(AF_INET6)
286abe
@@ -1304,7 +1303,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
+                Py_CLEAR(py_tuple);
286abe
             }
286abe
         }
286abe
 #endif
286abe
@@ -1477,7 +1476,7 @@ psutil_net_if_stats(PyObject* self, PyObject* args) {
286abe
                 goto error;
286abe
             if (PyDict_SetItemString(py_retdict, ksp->ks_name, py_ifc_info))
286abe
                 goto error;
286abe
-            Py_DECREF(py_ifc_info);
286abe
+            Py_CLEAR(py_ifc_info);
286abe
         }
286abe
     }
286abe
 
286abe
diff --git a/psutil/_psutil_windows.c b/psutil/_psutil_windows.c
286abe
index 81d1b4a..adef70c 100644
286abe
--- a/psutil/_psutil_windows.c
286abe
+++ b/psutil/_psutil_windows.c
286abe
@@ -307,7 +307,7 @@ psutil_pids(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_pid))
286abe
             goto error;
286abe
-        Py_DECREF(py_pid);
286abe
+        Py_CLEAR(py_pid);
286abe
     }
286abe
 
286abe
     // free C array allocated for PIDs
286abe
@@ -1019,7 +1019,7 @@ psutil_per_cpu_times(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     free(sppi);
286abe
@@ -1237,7 +1237,7 @@ psutil_proc_threads(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_tuple))
286abe
                 goto error;
286abe
-            Py_DECREF(py_tuple);
286abe
+            Py_CLEAR(py_tuple);
286abe
 
286abe
             CloseHandle(hThread);
286abe
         }
286abe
@@ -1695,7 +1695,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_conn_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_conn_tuple);
286abe
+                Py_CLEAR(py_conn_tuple);
286abe
             }
286abe
         }
286abe
         else {
286abe
@@ -1792,7 +1792,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_conn_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_conn_tuple);
286abe
+                Py_CLEAR(py_conn_tuple);
286abe
             }
286abe
         }
286abe
         else {
286abe
@@ -1866,7 +1866,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_conn_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_conn_tuple);
286abe
+                Py_CLEAR(py_conn_tuple);
286abe
             }
286abe
         }
286abe
         else {
286abe
@@ -1939,7 +1939,7 @@ psutil_net_connections(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_conn_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_conn_tuple);
286abe
+                Py_CLEAR(py_conn_tuple);
286abe
             }
286abe
         }
286abe
         else {
286abe
@@ -2331,8 +2331,8 @@ psutil_net_io_counters(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyDict_SetItem(py_retdict, py_nic_name, py_nic_info))
286abe
             goto error;
286abe
-        Py_XDECREF(py_nic_name);
286abe
-        Py_XDECREF(py_nic_info);
286abe
+        Py_CLEAR(py_nic_name);
286abe
+        Py_CLEAR(py_nic_info);
286abe
 
286abe
         free(pIfRow);
286abe
         pCurrAddresses = pCurrAddresses->Next;
286abe
@@ -2446,7 +2446,7 @@ psutil_disk_io_counters(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyDict_SetItemString(py_retdict, szDeviceDisplay, py_tuple))
286abe
             goto error;
286abe
-        Py_XDECREF(py_tuple);
286abe
+        Py_CLEAR(py_tuple);
286abe
 
286abe
 next:
286abe
         CloseHandle(hDevice);
286abe
@@ -2603,7 +2603,7 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
                             goto error;
286abe
                         }
286abe
 
286abe
-                        Py_DECREF(py_tuple);
286abe
+                        Py_CLEAR(py_tuple);
286abe
 
286abe
                         // Continue looking for more mount points
286abe
                         mp_flag = FindNextVolumeMountPoint(mp_h, mp_buf, MAX_PATH);
286abe
@@ -2628,7 +2628,7 @@ psutil_disk_partitions(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_DECREF(py_tuple);
286abe
+        Py_CLEAR(py_tuple);
286abe
         goto next;
286abe
 
286abe
 next:
286abe
@@ -2758,9 +2758,9 @@ psutil_users(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyList_Append(py_retlist, py_tuple))
286abe
             goto error;
286abe
-        Py_XDECREF(py_username);
286abe
-        Py_XDECREF(py_address);
286abe
-        Py_XDECREF(py_tuple);
286abe
+        Py_CLEAR(py_username);
286abe
+        Py_CLEAR(py_address);
286abe
+        Py_CLEAR(py_tuple);
286abe
     }
286abe
 
286abe
     WTSFreeMemory(sessions);
286abe
@@ -2992,8 +2992,8 @@ psutil_proc_memory_maps(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_tuple))
286abe
                 goto error;
286abe
-            Py_DECREF(py_tuple);
286abe
-            Py_DECREF(py_str);
286abe
+            Py_CLEAR(py_tuple);
286abe
+            Py_CLEAR(py_str);
286abe
         }
286abe
         previousAllocationBase = basicInfo.AllocationBase;
286abe
         baseAddress = (PCHAR)baseAddress + basicInfo.RegionSize;
286abe
@@ -3043,8 +3043,8 @@ psutil_ppid_map(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyDict_SetItem(py_retdict, py_pid, py_ppid))
286abe
                 goto error;
286abe
-            Py_DECREF(py_pid);
286abe
-            Py_DECREF(py_ppid);
286abe
+            Py_CLEAR(py_pid);
286abe
+            Py_CLEAR(py_ppid);
286abe
         } while (Process32Next(handle, &pe);;
286abe
     }
286abe
 
286abe
@@ -3147,8 +3147,8 @@ psutil_net_if_addrs(PyObject *self, PyObject *args) {
286abe
                 goto error;
286abe
             if (PyList_Append(py_retlist, py_tuple))
286abe
                 goto error;
286abe
-            Py_DECREF(py_tuple);
286abe
-            Py_DECREF(py_mac_address);
286abe
+            Py_CLEAR(py_tuple);
286abe
+            Py_CLEAR(py_mac_address);
286abe
         }
286abe
 
286abe
         // find out the IP address associated with the NIC
286abe
@@ -3224,14 +3224,14 @@ psutil_net_if_addrs(PyObject *self, PyObject *args) {
286abe
                     goto error;
286abe
                 if (PyList_Append(py_retlist, py_tuple))
286abe
                     goto error;
286abe
-                Py_DECREF(py_tuple);
286abe
-                Py_DECREF(py_address);
286abe
-                Py_DECREF(py_netmask);
286abe
+                Py_CLEAR(py_tuple);
286abe
+                Py_CLEAR(py_address);
286abe
+                Py_CLEAR(py_netmask);
286abe
 
286abe
                 pUnicast = pUnicast->Next;
286abe
             }
286abe
         }
286abe
-        Py_DECREF(py_nic_name);
286abe
+        Py_CLEAR(py_nic_name);
286abe
         pCurrAddresses = pCurrAddresses->Next;
286abe
     }
286abe
 
286abe
@@ -3351,8 +3351,8 @@ psutil_net_if_stats(PyObject *self, PyObject *args) {
286abe
             goto error;
286abe
         if (PyDict_SetItem(py_retdict, py_nic_name, py_ifc_info))
286abe
             goto error;
286abe
-        Py_DECREF(py_nic_name);
286abe
-        Py_DECREF(py_ifc_info);
286abe
+        Py_CLEAR(py_nic_name);
286abe
+        Py_CLEAR(py_ifc_info);
286abe
     }
286abe
 
286abe
     free(pIfTable);