summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-03-01 22:34:09 (GMT)
committerThomas Wouters <thomas@python.org>2006-03-01 22:34:09 (GMT)
commit7464b43e41acb08f02f3b7ec2db12747737952d1 (patch)
treefc866298ff2b0d3f50ba205b8f1991cc25be7793 /Python/marshal.c
parent7f401ef73dbdfd3b144ae25be62e2c139d699916 (diff)
downloadcpython-7464b43e41acb08f02f3b7ec2db12747737952d1.zip
cpython-7464b43e41acb08f02f3b7ec2db12747737952d1.tar.gz
cpython-7464b43e41acb08f02f3b7ec2db12747737952d1.tar.bz2
Fix incompatible assignment warning from previous checkin.
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 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);
}