summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/symtablemodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index 2452521..e24e72f 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -32,6 +32,7 @@ symtable_symtable(PyObject *self, PyObject *args)
if (st == NULL)
return NULL;
t = Py_BuildValue("O", st->st_symbols);
+ PyMem_Free((void *)st->st_future);
PySymtable_Free(st);
return t;
}