Consistency

This commit is contained in:
Přemysl Eric Janouch 2018-12-14 02:52:05 +01:00
parent f9f3171c02
commit be8480f8af
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 2 deletions

View File

@ -691,8 +691,8 @@ func NewUpdater(document []byte) (*Updater, error) {
xrefOffset, _ := strconv.ParseInt(string(m[1]), 10, 64)
lastXrefOffset := xrefOffset
loadedXrefs := map[int64]struct{}{}
loadedEntries := map[uint]struct{}{}
loadedXrefs := make(map[int64]struct{})
loadedEntries := make(map[uint]struct{})
var throwawayStack []Object
for {