We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d58ff commit 00a468cCopy full SHA for 00a468c
Modules/_blake2/blake2b_impl.c
@@ -391,6 +391,9 @@ py_blake2b_dealloc(PyObject *self)
391
PyThread_free_lock(obj->lock);
392
obj->lock = NULL;
393
}
394
+ PyTypeObject *tp = Py_TYPE(self);
395
+ Py_DECREF(tp);
396
+
397
PyObject_Del(self);
398
399
Modules/_blake2/blake2s_impl.c
@@ -390,6 +390,10 @@ py_blake2s_dealloc(PyObject *self)
390
0 commit comments