summaryrefslogtreecommitdiff
path: root/commit.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2018-08-08 12:33:28 +0200
committerGitHub <[email protected]>2018-08-08 12:33:28 +0200
commit5280ceb7514c7eb4cfcaaf33a13ee580cd9bc2e0 (patch)
tree8273762efd5b460bd4d2ee215263e073fa5f4aaa /commit.go
parent14280de4da0f392935854a7cbdd67b2a5505c3a8 (diff)
parent538a05d55c6051371dd1749af75a7b2e2d623d53 (diff)
Merge pull request #452 from libgit2/cmn/bump-libgit2-master
Bump vendored libgit2 to 275d84c583
Diffstat (limited to 'commit.go')
-rw-r--r--commit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.go b/commit.go
index 223b093..0ab720d 100644
--- a/commit.go
+++ b/commit.go
@@ -37,10 +37,10 @@ func (c *Commit) RawMessage() string {
func (c *Commit) ExtractSignature() (string, string, error) {
var c_signed C.git_buf
- defer C.git_buf_free(&c_signed)
+ defer C.git_buf_dispose(&c_signed)
var c_signature C.git_buf
- defer C.git_buf_free(&c_signature)
+ defer C.git_buf_dispose(&c_signature)
oid := c.Id()
repo := C.git_commit_owner(c.cast_ptr)