diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-09 16:50:35 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-09 16:50:35 +0200 |
commit | f09fb50cb092c241df4c0bd25c6755e6132e473e (patch) | |
tree | c67f4cdeacf70a64d00167cceceed7a68a5c9e4a /formats/packfile/decoder.go | |
parent | 59219f01bbf5f748876258fe5f4648d2cfd4d6e9 (diff) | |
download | go-git-f09fb50cb092c241df4c0bd25c6755e6132e473e.tar.gz |
storage: filessytem read multiple packfiles support and index decoding
Diffstat (limited to 'formats/packfile/decoder.go')
-rw-r--r-- | formats/packfile/decoder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/formats/packfile/decoder.go b/formats/packfile/decoder.go index 92c42af..6a0aa71 100644 --- a/formats/packfile/decoder.go +++ b/formats/packfile/decoder.go @@ -188,7 +188,7 @@ func (d *Decoder) recallByOffset(o int64) (core.Object, error) { return d.recallByHash(h) } - return nil, ErrCannotRecall.AddDetails("no object found at offset %d", o) + return d.ReadObjectAt(o) } func (d *Decoder) recallByHash(h core.Hash) (core.Object, error) { |