summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/marshal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index b61436b..585c1eb 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -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);
}