Skip to content

Commit 2fba250

Browse files
committed
Free() the copies of repository.LookupXxx()
`repository.LookupXxx()` allocate new go `Object`s that have a reference to a `C.git_object`. Those are then duplicated with `git_object_dup()`, so the original `Object`s linger unnecessarily until the Go GC kicks in. This change explicitly calls `Free()` on the originals to avoid unnecessary accumulation of garbage. (cherry picked from commit 2bb5930)
1 parent d47253f commit 2fba250

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

repository.go

+4
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ func (v *Repository) LookupTree(id *Oid) (*Tree, error) {
194194
if err != nil {
195195
return nil, err
196196
}
197+
defer obj.Free()
197198

198199
return obj.AsTree()
199200
}
@@ -203,6 +204,7 @@ func (v *Repository) LookupCommit(id *Oid) (*Commit, error) {
203204
if err != nil {
204205
return nil, err
205206
}
207+
defer obj.Free()
206208

207209
return obj.AsCommit()
208210
}
@@ -212,6 +214,7 @@ func (v *Repository) LookupBlob(id *Oid) (*Blob, error) {
212214
if err != nil {
213215
return nil, err
214216
}
217+
defer obj.Free()
215218

216219
return obj.AsBlob()
217220
}
@@ -221,6 +224,7 @@ func (v *Repository) LookupTag(id *Oid) (*Tag, error) {
221224
if err != nil {
222225
return nil, err
223226
}
227+
defer obj.Free()
224228

225229
return obj.AsTag()
226230
}

0 commit comments

Comments
 (0)