mirror of https://github.com/python/cpython
gh-126106: Fix `NULL` possible derefrence in `Modules/_ssl.c` (#126111)
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
This commit is contained in:
parent
9b14083497
commit
a64a1c9206
|
@ -0,0 +1 @@
|
||||||
|
Fixes a possible ``NULL`` pointer dereference in :mod:`ssl`.
|
|
@ -5424,14 +5424,14 @@ PySSLSession_dealloc(PySSLSession *self)
|
||||||
static PyObject *
|
static PyObject *
|
||||||
PySSLSession_richcompare(PyObject *left, PyObject *right, int op)
|
PySSLSession_richcompare(PyObject *left, PyObject *right, int op)
|
||||||
{
|
{
|
||||||
int result;
|
|
||||||
PyTypeObject *sesstype = ((PySSLSession*)left)->ctx->state->PySSLSession_Type;
|
|
||||||
|
|
||||||
if (left == NULL || right == NULL) {
|
if (left == NULL || right == NULL) {
|
||||||
PyErr_BadInternalCall();
|
PyErr_BadInternalCall();
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int result;
|
||||||
|
PyTypeObject *sesstype = ((PySSLSession*)left)->ctx->state->PySSLSession_Type;
|
||||||
|
|
||||||
if (!Py_IS_TYPE(left, sesstype) || !Py_IS_TYPE(right, sesstype)) {
|
if (!Py_IS_TYPE(left, sesstype) || !Py_IS_TYPE(right, sesstype)) {
|
||||||
Py_RETURN_NOTIMPLEMENTED;
|
Py_RETURN_NOTIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue