mirror of https://github.com/python/cpython
Issue #17034: Use Py_CLEAR() in bytesobject.c.
This commit is contained in:
commit
d357a3f841
|
@ -2831,8 +2831,7 @@ PyBytes_Concat(register PyObject **pv, register PyObject *w)
|
|||
if (*pv == NULL)
|
||||
return;
|
||||
if (w == NULL) {
|
||||
Py_DECREF(*pv);
|
||||
*pv = NULL;
|
||||
Py_CLEAR(*pv);
|
||||
return;
|
||||
}
|
||||
v = bytes_concat(*pv, w);
|
||||
|
@ -2896,12 +2895,9 @@ void
|
|||
PyBytes_Fini(void)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < UCHAR_MAX + 1; i++) {
|
||||
Py_XDECREF(characters[i]);
|
||||
characters[i] = NULL;
|
||||
}
|
||||
Py_XDECREF(nullstring);
|
||||
nullstring = NULL;
|
||||
for (i = 0; i < UCHAR_MAX + 1; i++)
|
||||
Py_CLEAR(characters[i]);
|
||||
Py_CLEAR(nullstring);
|
||||
}
|
||||
|
||||
/*********************** Bytes Iterator ****************************/
|
||||
|
|
Loading…
Reference in New Issue