From 4a0be4d061222c215a41379f8b73d689fc8f7429 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Wed, 6 Sep 2023 12:35:19 +0900 Subject: [PATCH] fix --- Python/instrumentation.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/instrumentation.c b/Python/instrumentation.c index 38af543c75badd..9c2eb319a1cdd3 100644 --- a/Python/instrumentation.c +++ b/Python/instrumentation.c @@ -1603,7 +1603,6 @@ _Py_Instrument(PyCodeObject *code, PyInterpreterState *interp) return 0; } /* Insert instrumentation */ - int code_len = (int)Py_SIZE(code); for (int i = code->_co_firsttraceable; i < code_len; i+= _PyInstruction_GetLength(code, i)) { _Py_CODEUNIT *instr = &_PyCode_CODE(code)[i]; CHECK(instr->op.code != 0);