diff options
author | Javi Fontan <jfontan@gmail.com> | 2018-01-25 10:29:46 +0100 |
---|---|---|
committer | Javi Fontan <jfontan@gmail.com> | 2018-01-25 10:29:46 +0100 |
commit | d5f74d2d3cd63325c6d16f5e93f78d6462ec9308 (patch) | |
tree | 8dc803bf7c1d8a9a6f628375da1daee126cd1b01 /plumbing/format/packfile/object_pack.go | |
parent | 522327b572276fe94e76ff9bb5e41b1efdf69dee (diff) | |
download | go-git-d5f74d2d3cd63325c6d16f5e93f78d6462ec9308.tar.gz |
plumbing: format/packfile, check nil objects in ObjectToPack
SetOriginal now skips setting resolved values if the provided
object is nil. BackToOriginal also skips nil Original objects.
Signed-off-by: Javi Fontan <jfontan@gmail.com>
Diffstat (limited to 'plumbing/format/packfile/object_pack.go')
-rw-r--r-- | plumbing/format/packfile/object_pack.go | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/plumbing/format/packfile/object_pack.go b/plumbing/format/packfile/object_pack.go index 284871f..877581e 100644 --- a/plumbing/format/packfile/object_pack.go +++ b/plumbing/format/packfile/object_pack.go @@ -53,7 +53,7 @@ func newDeltaObjectToPack(base *ObjectToPack, original, delta plumbing.EncodedOb // BackToOriginal converts that ObjectToPack to a non-deltified object if it was one func (o *ObjectToPack) BackToOriginal() { - if o.IsDelta() { + if o.IsDelta() && o.Original != nil { o.Object = o.Original o.Base = nil o.Depth = 0 @@ -77,13 +77,17 @@ func (o *ObjectToPack) WantWrite() bool { return o.Offset == 1 } -// SetOriginal sets both Original and saves size, type and hash +// SetOriginal sets both Original and saves size, type and hash. If object +// is nil Original is set but previous resolved values are kept func (o *ObjectToPack) SetOriginal(obj plumbing.EncodedObject) { o.Original = obj - o.originalSize = obj.Size() - o.originalType = obj.Type() - o.originalHash = obj.Hash() - o.resolvedOriginal = true + + if obj != nil { + o.originalSize = obj.Size() + o.originalType = obj.Type() + o.originalHash = obj.Hash() + o.resolvedOriginal = true + } } func (o *ObjectToPack) Type() plumbing.ObjectType { |