Fix incompatible assignment warning from previous checkin.
authorThomas Wouters <thomas@python.org>
Wed, 1 Mar 2006 22:34:09 +0000 (22:34 +0000)
committerThomas Wouters <thomas@python.org>
Wed, 1 Mar 2006 22:34:09 +0000 (22:34 +0000)
Python/marshal.c

index b61436b72e2a6951328039702b628c3399ce35cd..585c1ebd44de4455d77553eb409db3a930d793ad 100644 (file)
@@ -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);
 }