Skip to content

Commit 1752602

Browse files
cushonpull[bot]
authored andcommitted
archive/zip: fix a broken URL in a comment in writeDataDescriptor
The comment contains a dead link to a OpenJDK bug ID 7073588 this change fixes the link. Change-Id: Ib9b10362c707507e59bb6f340d52a0025f65e292 GitHub-Last-Rev: 37af15b GitHub-Pull-Request: #66669 Reviewed-on: https://go-review.googlesource.com/c/go/+/576335 Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent a66cc4f commit 1752602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/archive/zip/writer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ func (w *fileWriter) writeDataDescriptor() error {
608608
}
609609
// Write data descriptor. This is more complicated than one would
610610
// think, see e.g. comments in zipfile.c:putextended() and
611-
// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7073588.
611+
// https://bugs.openjdk.org/browse/JDK-7073588.
612612
// The approach here is to write 8 byte sizes if needed without
613613
// adding a zip64 extra in the local header (too late anyway).
614614
var buf []byte

0 commit comments

Comments
 (0)