summary refs log tree commit diff
path: root/src/zip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zip.c')
-rw-r--r--src/zip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zip.c b/src/zip.c
index 76820b5..97ef028 100644
--- a/src/zip.c
+++ b/src/zip.c
@@ -61,7 +61,7 @@ struct zip_file *zip_index(char *const restrict file, size_t const size, int *co
 
 static struct zip_footer *zip_find_footer(char *const file, size_t const size, int *const error) {
 	// check if zip file is too big, and if size_t can store values bigger than a max* size zip file
-	if ((size_t) 1 << 32 && size >= (size_t) 1 << 32) {
+	if ((size_t) 1 << 31 << 1 && size >= (size_t) 1 << 31 << 1) {
 		*error = ZIP_BIG;
 		return NULL;
 	}