Skip to content

Commit eddb0a7

Browse files
committed
fix compiler warning
1 parent 605a774 commit eddb0a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/marshal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ r_object(RFILE *p)
803803
/* NULL is a valid return value, it does not necessarily means that
804804
an exception is set. */
805805
PyObject *v, *v2;
806-
Py_ssize_t idx;
806+
Py_ssize_t idx = 0;
807807
long i, n;
808808
int type = r_byte(p);
809809
int flag;

0 commit comments

Comments
 (0)