Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7464b43

Browse files
committed
Fix incompatible assignment warning from previous checkin.
1 parent 7f401ef commit 7464b43

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/marshal.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,8 @@ PyMarshal_ReadShortFromFile(FILE *fp)
887887
RFILE rf;
888888
assert(fp);
889889
rf.fp = fp;
890-
rf.strings = rf.end = rf.ptr = NULL;
890+
rf.strings = NULL;
891+
rf.end = rf.ptr = NULL;
891892
return r_short(&rf);
892893
}
893894

0 commit comments

Comments
 (0)