From e4c035a99fa825a361cb1a60f7bb41b8ef4d19b4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 9 Jul 2017 17:02:13 -0400 Subject: [PATCH] Pacify compiler warning. --- src/archiver_zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/archiver_zip.c b/src/archiver_zip.c index 1fe5b20..bbb0e53 100644 --- a/src/archiver_zip.c +++ b/src/archiver_zip.c @@ -1587,7 +1587,7 @@ static void ZIP_closeArchive(void *opaque); static void *ZIP_openArchive(PHYSFS_Io *io, const char *name, int forWriting) { ZIPinfo *info = NULL; - PHYSFS_uint64 dstart; /* data start */ + PHYSFS_uint64 dstart = 0; /* data start */ PHYSFS_uint64 cdir_ofs; /* central dir offset */ PHYSFS_uint64 entry_count;