Kaydet (Commit) f2fe7f08 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix possible NULL dereference

üst 2f197078
......@@ -628,7 +628,9 @@ descr_new(PyTypeObject *descrtype, PyTypeObject *type, const char *name)
Py_DECREF(descr);
descr = NULL;
}
descr->d_qualname = NULL;
else {
descr->d_qualname = NULL;
}
}
return descr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment