Fix the return value of set_discard (issue #10519)
This commit is contained in:
parent
5f4d870668
commit
a39de111a5
|
@ -1936,9 +1936,10 @@ set_discard(PySetObject *so, PyObject *key)
|
|||
tmpkey = make_new_set(&PyFrozenSet_Type, key);
|
||||
if (tmpkey == NULL)
|
||||
return NULL;
|
||||
result = set_discard_key(so, tmpkey);
|
||||
rv = set_discard_key(so, tmpkey);
|
||||
Py_DECREF(tmpkey);
|
||||
return result;
|
||||
if (rv == -1)
|
||||
return NULL;
|
||||
}
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue