summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Python/assemble.c
diff options
context:
space:
mode:
authorYDBot <[email protected]>2026-06-26 11:22:40 +0000
committerYDBot <[email protected]>2026-06-26 11:22:40 +0000
commite78a9f66eeb2ec3ccd8712bea29b3e7197519df0 (patch)
tree64d07952278d008f8b3947089c252ec5a346cab4 /contrib/tools/python3/Python/assemble.c
parente5eebd69b54a5462d430c00b511a45f2f34b234a (diff)
parentee2100f4ac5f28a7762a25c7c05750348a098df6 (diff)
Sync branches 260626-1120
Diffstat (limited to 'contrib/tools/python3/Python/assemble.c')
-rw-r--r--contrib/tools/python3/Python/assemble.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tools/python3/Python/assemble.c b/contrib/tools/python3/Python/assemble.c
index 35453277dd8..288d786461b 100644
--- a/contrib/tools/python3/Python/assemble.c
+++ b/contrib/tools/python3/Python/assemble.c
@@ -80,9 +80,9 @@ assemble_init(struct assembler *a, int firstlineno)
}
return SUCCESS;
error:
- Py_XDECREF(a->a_bytecode);
- Py_XDECREF(a->a_linetable);
- Py_XDECREF(a->a_except_table);
+ Py_CLEAR(a->a_bytecode);
+ Py_CLEAR(a->a_linetable);
+ Py_CLEAR(a->a_except_table);
return ERROR;
}