We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82b1dbd commit 5225175Copy full SHA for 5225175
Objects/frameobject.c
@@ -429,7 +429,7 @@ _PyFrame_GetState(PyFrameObject *frame)
429
if (frame->f_frame->f_lasti < 0) {
430
return FRAME_CREATED;
431
}
432
- char *code = frame->f_frame->f_code->co_code_adaptive;
+ uint8_t *code = (uint8_t *)frame->f_frame->f_code->co_code_adaptive;
433
int opcode = code[frame->f_frame->f_lasti*sizeof(_Py_CODEUNIT)];
434
switch(_PyOpcode_Deopt[opcode]) {
435
case COPY_FREE_VARS:
0 commit comments