diff options
| author | YDBot <[email protected]> | 2026-06-26 11:22:40 +0000 |
|---|---|---|
| committer | YDBot <[email protected]> | 2026-06-26 11:22:40 +0000 |
| commit | e78a9f66eeb2ec3ccd8712bea29b3e7197519df0 (patch) | |
| tree | 64d07952278d008f8b3947089c252ec5a346cab4 /contrib/tools/python3/Python/assemble.c | |
| parent | e5eebd69b54a5462d430c00b511a45f2f34b234a (diff) | |
| parent | ee2100f4ac5f28a7762a25c7c05750348a098df6 (diff) | |
Sync branches 260626-1120
Diffstat (limited to 'contrib/tools/python3/Python/assemble.c')
| -rw-r--r-- | contrib/tools/python3/Python/assemble.c | 6 |
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; } |
