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 17aadcb commit 9aa277bCopy full SHA for 9aa277b
1 file changed
Python/marshal.c
@@ -1656,12 +1656,12 @@ r_object(RFILE *p)
1656
case TYPE_SLICE:
1657
{
1658
Py_ssize_t idx = r_ref_reserve(flag, p);
1659
- PyObject *stop = NULL;
1660
- PyObject *step = NULL;
1661
- PyObject *start = NULL;
1662
if (idx < 0) {
1663
break;
1664
}
+ PyObject *stop = NULL;
+ PyObject *step = NULL;
+ PyObject *start = NULL;
1665
start = r_object(p);
1666
if (start == NULL) {
1667
goto cleanup;
0 commit comments