< prev index next >

src/java.base/share/classes/java/util/zip/ZipFile.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 671,681 **** e.size = CENLEN(cen, pos); e.csize = CENSIZ(cen, pos); e.method = CENHOW(cen, pos); if (elen != 0) { int start = pos + CENHDR + nlen; ! e.setExtra0(Arrays.copyOfRange(cen, start, start + elen), true); } if (clen != 0) { int start = pos + CENHDR + nlen + elen; if (!zc.isUTF8() && (flag & USE_UTF8) != 0) { e.comment = zc.toStringUTF8(cen, start, clen); --- 671,681 ---- e.size = CENLEN(cen, pos); e.csize = CENSIZ(cen, pos); e.method = CENHOW(cen, pos); if (elen != 0) { int start = pos + CENHDR + nlen; ! e.setExtra0(Arrays.copyOfRange(cen, start, start + elen), true, false); } if (clen != 0) { int start = pos + CENHDR + nlen + elen; if (!zc.isUTF8() && (flag & USE_UTF8) != 0) { e.comment = zc.toStringUTF8(cen, start, clen);
< prev index next >