From 0ab061308d1efc5028541943d76d2e57c7888c85 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 27 Jul 2002 22:06:25 +0000 Subject: [PATCH] Initialized some variables to stop compiler whining. --- archivers/zip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archivers/zip.c b/archivers/zip.c index 14334b5..212bc9d 100644 --- a/archivers/zip.c +++ b/archivers/zip.c @@ -419,13 +419,13 @@ static int ZIP_fileClose(FileHandle *handle) static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len) { PHYSFS_uint8 buf[256]; - PHYSFS_sint32 i; + PHYSFS_sint32 i = 0; PHYSFS_sint64 filelen; PHYSFS_sint64 filepos; PHYSFS_sint32 maxread; PHYSFS_sint32 totalread = 0; int found = 0; - PHYSFS_uint32 extra; + PHYSFS_uint32 extra = 0; filelen = __PHYSFS_platformFileLength(in); BAIL_IF_MACRO(filelen == -1, NULL, 0);