Fix memleak for Config and parent commit objects
This commit is contained in:
parent
295ec8894c
commit
5e30c192e9
11
commit.go
11
commit.go
|
@ -9,8 +9,8 @@ extern int _go_git_treewalk(git_tree *tree, git_treewalk_mode mode, void *ptr);
|
||||||
import "C"
|
import "C"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
|
||||||
"time"
|
"time"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Commit
|
// Commit
|
||||||
|
@ -48,12 +48,13 @@ func (c Commit) Committer() *Signature {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Commit) Parent(n uint) *Commit {
|
func (c *Commit) Parent(n uint) *Commit {
|
||||||
par := &Commit{}
|
var cobj *C.git_object
|
||||||
ret := C.git_commit_parent(&par.ptr, c.ptr, C.uint(n))
|
ret := C.git_commit_parent(&cobj, c.ptr, C.uint(n))
|
||||||
if ret != 0 {
|
if ret != 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return par
|
|
||||||
|
return allocObject(cobj).(*Commit)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Commit) ParentId(n uint) *Oid {
|
func (c *Commit) ParentId(n uint) *Oid {
|
||||||
|
@ -88,7 +89,7 @@ func (v *Signature) Offset() int {
|
||||||
return offset / 60
|
return offset / 60
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sig *Signature) toC() (*C.git_signature) {
|
func (sig *Signature) toC() *C.git_signature {
|
||||||
var out *C.git_signature
|
var out *C.git_signature
|
||||||
|
|
||||||
name := C.CString(sig.Name)
|
name := C.CString(sig.Name)
|
||||||
|
|
|
@ -6,6 +6,7 @@ package git
|
||||||
*/
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
|
"runtime"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -66,3 +67,8 @@ func (c *Config) Set(name, value string) (err error) {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Config) Free() {
|
||||||
|
runtime.SetFinalizer(c, nil)
|
||||||
|
C.git_config_free(c.ptr)
|
||||||
|
}
|
||||||
|
|
|
@ -58,6 +58,7 @@ func (v *Repository) Config() (*Config, error) {
|
||||||
return nil, LastError()
|
return nil, LastError()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
runtime.SetFinalizer(config, (*Config).Free)
|
||||||
return config, nil
|
return config, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue