Issue #17034: Use Py_CLEAR() in bytesobject.c.

This commit is contained in:
Serhiy Storchaka 2013-02-02 18:46:19 +02:00
commit 8911ef5b6d
1 changed files with 4 additions and 8 deletions

View File

@ -2754,8 +2754,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);
@ -2819,12 +2818,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 ****************************/