Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if
allocating a bigger table failed
PyMemoTable destructor does crash if mt_table is NULL.
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 8b3438e..888a498 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -529,7 +529,7 @@
oldtable = self->mt_table;
self->mt_table = PyMem_MALLOC(new_size * sizeof(PyMemoEntry));
if (self->mt_table == NULL) {
- PyMem_FREE(oldtable);
+ self->mt_table = oldtable;
PyErr_NoMemory();
return -1;
}