From c6af7f4bf7edc9924efbaa7352c4eb636258d072 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Tue, 27 May 2025 18:14:56 +0100 Subject: [PATCH] [3.13] GH-128161: Fix refleak introduced in GH-134788 (GH-134799) --- Python/compile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.47.3