Kaydet (Commit) 7464b43e authored tarafından Thomas Wouters's avatar Thomas Wouters

Fix incompatible assignment warning from previous checkin.

üst 7f401ef7
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment