Skip to content

Commit

Permalink
Merge pull request eclipse-openj9#2245 from pdbain-ibm/jar
Browse files Browse the repository at this point in the history
Process zip files up to 4 GB
  • Loading branch information
gacholio authored Jun 28, 2018
2 parents a934baf + 3654a66 commit 49d6e21
Show file tree
Hide file tree
Showing 2 changed files with 139 additions and 118 deletions.
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

0 comments on commit 49d6e21

Please sign in to comment.