mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL
This commit is contained in:
commit
f03572d040
1 changed files with 2 additions and 1 deletions
|
@ -219,7 +219,7 @@ method_repr(PyMethodObject *a)
|
|||
{
|
||||
PyObject *self = a->im_self;
|
||||
PyObject *func = a->im_func;
|
||||
PyObject *klass = (PyObject*)Py_TYPE(self);
|
||||
PyObject *klass;
|
||||
PyObject *funcname = NULL ,*klassname = NULL, *result = NULL;
|
||||
char *defname = "?";
|
||||
|
||||
|
@ -227,6 +227,7 @@ method_repr(PyMethodObject *a)
|
|||
PyErr_BadInternalCall();
|
||||
return NULL;
|
||||
}
|
||||
klass = (PyObject*)Py_TYPE(self);
|
||||
|
||||
funcname = _PyObject_GetAttrId(func, &PyId___name__);
|
||||
if (funcname == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue