From 8d88e8c662a80c186c7a0e67f1c1f3d4010276f8 Mon Sep 17 00:00:00 2001 From: Dino Viehland Date: Thu, 12 Sep 2019 15:38:13 +0100 Subject: bpo-38138: Fix memory leak introduced by interned strings (GH-16053) Interned string needs to be decref'd https://bugs.python.org/issue38138 Automerge-Triggered-By: @matrixise --- Python/ast.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/ast.c b/Python/ast.c index 46815c2..e6f7167 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -630,6 +630,7 @@ new_identifier(const char *n, struct compiling *c) PyObject *args[2] = {form, id}; id2 = _PyObject_FastCall(c->c_normalize, args, 2); Py_DECREF(id); + Py_DECREF(form); if (!id2) return NULL; if (!PyUnicode_Check(id2)) { -- cgit v0.12