Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process zip files up to 4 GB #2245

Merged
merged 4 commits into from
Jun 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions runtime/include/zipsup.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 1991, 2017 IBM Corp. and others
* Copyright (c) 1991, 2018 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -97,9 +97,9 @@ typedef struct J9ZipEntry {
U_8* filename;
U_8* extraField;
U_8* fileComment;
I_32 dataPointer;
I_32 filenamePointer;
I_32 extraFieldPointer;
U_32 dataPointer;
U_32 filenamePointer;
U_32 extraFieldPointer;
I_32 fileCommentPointer;
U_32 compressedSize;
U_32 uncompressedSize;
Expand All @@ -122,7 +122,7 @@ typedef struct J9ZipFile {
struct J9ZipCache* cache;
void* cachePool;
IDATA fd;
I_32 pointer;
U_32 pointer;
U_8 internalFilename[80];
U_8 type;
} J9ZipFile;
Expand Down
Loading