]> granicus.if.org Git - python/commitdiff
bpo-35879: Fix type comment leaks (GH-11728)
authorGuido van Rossum <guido@python.org>
Fri, 1 Feb 2019 23:28:13 +0000 (15:28 -0800)
committerGitHub <noreply@github.com>
Fri, 1 Feb 2019 23:28:13 +0000 (15:28 -0800)
* Fix leak for # type: ignore
* Fix the type comment leak

Parser/parsetok.c
Python/ast.c

index 7fddc5a0e8975e86bcbf3bee84e70a05490f8ec9..1fa4a1286b775dd64dff32388b2a0bbe978f031a 100644 (file)
@@ -330,6 +330,7 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,
         }
 
         if (type == TYPE_IGNORE) {
+            PyObject_FREE(str);
             if (!growable_int_array_add(&type_ignores, tok->lineno)) {
                 err_ret->error = E_NOMEM;
                 break;
index c422e9651ced462c6c0ba9857ea8757f7d63d7d4..45578a850f77cd4c50cb8a6fc8431090ad521958 100644 (file)
@@ -699,11 +699,16 @@ ast_error(struct compiling *c, const node *n, const char *errmsg, ...)
 */
 
 static string
-new_type_comment(const char *s)
+new_type_comment(const char *s, struct compiling *c)
 {
-  return PyUnicode_DecodeUTF8(s, strlen(s), NULL);
+    PyObject *res = PyUnicode_DecodeUTF8(s, strlen(s), NULL);
+    if (PyArena_AddPyObject(c->c_arena, res) < 0) {
+        Py_DECREF(res);
+        return NULL;
+    }
+    return res;
 }
-#define NEW_TYPE_COMMENT(n) new_type_comment(STR(n))
+#define NEW_TYPE_COMMENT(n) new_type_comment(STR(n), c)
 
 static int
 num_stmts(const node *n)