From: Mark Shannon Date: Tue, 27 May 2025 17:14:56 +0000 (+0100) Subject: [3.13] GH-128161: Fix refleak introduced in GH-134788 (GH-134799) X-Git-Tag: v3.13.4~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6af7f4bf7edc9924efbaa7352c4eb636258d072;p=thirdparty%2FPython%2Fcpython.git [3.13] GH-128161: Fix refleak introduced in GH-134788 (GH-134799) --- diff --git a/Python/compile.c b/Python/compile.c index dba10237a2a7..e9506d6d978d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -5811,7 +5811,9 @@ compiler_comprehension(struct compiler *c, expr_ty e, int type, outermost = (comprehension_ty) asdl_seq_GET(generators, 0); if (is_inlined) { - VISIT(c, expr, outermost->iter); + if (compiler_visit_expr(c, outermost->iter) < 0) { + goto error; + } if (push_inlined_comprehension_state(c, loc, entry, &inline_state)) { goto error; }