aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/index
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2020-07-16 21:29:58 +0200
committerGitHub <noreply@github.com>2020-07-16 21:29:58 +0200
commit641ee1dd69d3b8616127623e4b9341f4f4196d12 (patch)
treec37ce033ec64f0378acc2cde8ae59a54cdd74667 /plumbing/format/index
parent7906922c319b6077e8e66b70711073fb59a08a20 (diff)
parent8b8e4561eec882fad6e93d8e4257a9dc21311f3e (diff)
downloadgo-git-641ee1dd69d3b8616127623e4b9341f4f4196d12.tar.gz
Merge pull request #125 from cristaloleg/minor-linter-fixes
*: minor linter fixes
Diffstat (limited to 'plumbing/format/index')
-rw-r--r--plumbing/format/index/decoder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/format/index/decoder.go b/plumbing/format/index/decoder.go
index d341d59..036b636 100644
--- a/plumbing/format/index/decoder.go
+++ b/plumbing/format/index/decoder.go
@@ -188,7 +188,7 @@ func (d *Decoder) doReadEntryNameV4() (string, error) {
func (d *Decoder) doReadEntryName(len uint16) (string, error) {
name := make([]byte, len)
- _, err := io.ReadFull(d.r, name[:])
+ _, err := io.ReadFull(d.r, name)
return string(name), err
}