Skip to content

Commit cb4eddb

Browse files
committed
fix warning
1 parent d142f19 commit cb4eddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/codegen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3758,7 +3758,7 @@ maybe_optimize_function_call(compiler *c, expr_ty e, jump_target_label end)
37583758
NEW_JUMP_TARGET_LABEL(c, skip_optimization);
37593759

37603760
int const_oparg = -1;
3761-
PyObject *initial_res;
3761+
PyObject *initial_res = NULL;
37623762
int continue_jump_opcode = -1;
37633763
if (_PyUnicode_EqualToASCIIString(func->v.Name.id, "all")) {
37643764
const_oparg = CONSTANT_BUILTIN_ALL;

0 commit comments

Comments
 (0)