From 024784efbdacf41dffd1ade887e6d238686d8e30 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 21 Aug 2010 20:05:22 -0400 Subject: [PATCH] Actually, that's FOUR gigabytes. --- 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 79128a04..bd2cc3be 100644 --- a/src/archiver_zip.c +++ b/src/archiver_zip.c @@ -375,7 +375,7 @@ static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len) filelen = __PHYSFS_platformFileLength(in); BAIL_IF_MACRO(filelen == -1, NULL, 0); /* !!! FIXME: unlocalized string */ - BAIL_IF_MACRO(filelen > 0xFFFFFFFF, "ZIP bigger than 2 gigs?!", 0); + BAIL_IF_MACRO(filelen > 0xFFFFFFFF, "ZIP bigger than 4 gigs?!", 0); /* * Jump to the end of the file and start reading backwards.