Skip to content
This repository has been archived by the owner on Jul 7, 2020. It is now read-only.

Use keyed fields in struct literals to appease go vet on Google AppEngine #20

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion read.go
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ func decryptStream(key []byte, useAES bool, ptr objptr, rd io.Reader) io.Reader
rd = &cbcReader{cbc: cbc, rd: rd, buf: make([]byte, 16)}
} else {
c, _ := rc4.NewCipher(key)
rd = &cipher.StreamReader{c, rd}
rd = &cipher.StreamReader{S: c, R: rd}
}
return rd
}
Expand Down