projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f401ef
)
Fix incompatible assignment warning from previous checkin.
author
Thomas Wouters
<thomas@python.org>
Wed, 1 Mar 2006 22:34:09 +0000
(22:34 +0000)
committer
Thomas Wouters
<thomas@python.org>
Wed, 1 Mar 2006 22:34:09 +0000
(22:34 +0000)
Python/marshal.c
patch
|
blob
|
history
diff --git
a/Python/marshal.c
b/Python/marshal.c
index b61436b72e2a6951328039702b628c3399ce35cd..585c1ebd44de4455d77553eb409db3a930d793ad 100644
(file)
--- 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);
}