summaryrefslogtreecommitdiff
path: root/include/git2/commit.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@elego.de>2011-03-22 16:15:50 +0100
committerCarlos Martín Nieto <cmn@elego.de>2011-03-23 11:08:42 +0100
commitb0b8313583afdcd54a83ba3855cf3f6f287ae0ab (patch)
tree7afe2242087618b4d1ae15d42b7c52b7bf79a824 /include/git2/commit.h
parent7c80c19e1dffb4421f91913bc79b9cb7596634a4 (diff)
downloadlibgit2-b0b8313583afdcd54a83ba3855cf3f6f287ae0ab.tar.gz
Add close wappers for commit, tree, tag and blob
In the same spirit that git_repository_lookup is no longer available, add wrappers so the users don't have to cast when closing their objects. Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'include/git2/commit.h')
-rw-r--r--include/git2/commit.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/git2/commit.h b/include/git2/commit.h
index 8306eb152..d497324c6 100644
--- a/include/git2/commit.h
+++ b/include/git2/commit.h
@@ -54,6 +54,23 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con
}
/**
+ * Close an open commit
+ *
+ * This is a wrapper around git_object_close()
+ *
+ * IMPORTANT:
+ * It *is* necessary to call this method when you stop
+ * using a commit. Failure to do so will cause a memory leak.
+ *
+ * @param commit the commit to close
+ */
+
+GIT_INLINE(void) git_commit_close(git_commit *commit)
+{
+ return git_object_close((git_object *) commit);
+}
+
+/**
* Get the id of a commit.
*
* @param commit a previously loaded commit.