summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index b61436b72e..585c1ebd44 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);
}