mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Fix incompatible assignment warning from previous checkin.
This commit is contained in:
parent
7f401ef73d
commit
7464b43e41
1 changed files with 2 additions and 1 deletions
|
@ -887,7 +887,8 @@ PyMarshal_ReadShortFromFile(FILE *fp)
|
|||
RFILE rf;
|
||||
assert(fp);
|
||||
rf.fp = fp;
|
||||
rf.strings = rf.end = rf.ptr = NULL;
|
||||
rf.strings = NULL;
|
||||
rf.end = rf.ptr = NULL;
|
||||
return r_short(&rf);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue