From a98c6424e0ca1eaf33f3ad3270be6ca5e30e3679 Mon Sep 17 00:00:00 2001 From: GrieferAtWork Date: Sun, 12 Jan 2025 17:40:43 +0100 Subject: [PATCH] Fix bad decref in `Code.operator repr` --- src/deemon/execute/code.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/deemon/execute/code.c b/src/deemon/execute/code.c index 3ec66464..4c75c725 100644 --- a/src/deemon/execute/code.c +++ b/src/deemon/execute/code.c @@ -2348,7 +2348,6 @@ code_printrepr(DeeCodeObject *__restrict self, DO(DeeFormat_PRINT(printer, arg, ", ")); ob = self->co_constv[i]; temp = DeeFormat_PrintObjectRepr(printer, arg, ob); - Dee_Decref_unlikely(ob); if unlikely(temp < 0) goto err; result += temp;