summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshok P. Nadkarni <apnmbx-wits@yahoo.com>2022-02-14 13:57:07 +0530
committerEdward Thomson <ethomson@github.com>2022-02-18 08:55:13 -0500
commitf4cc03bb205ca8e0159da1012e583a87f71daca2 (patch)
tree22d76b9ec8bea412a7dd66b5fa2ab988af76a68f
parentf2cce1c74067c48abac04a1e967b48723226efab (diff)
downloadlibgit2-f4cc03bb205ca8e0159da1012e583a87f71daca2.tar.gz
Free parent and ref in lg2_commit before returning.
-rw-r--r--examples/commit.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/examples/commit.c b/examples/commit.c
index cd9782de1..aedc1af7e 100644
--- a/examples/commit.c
+++ b/examples/commit.c
@@ -26,7 +26,7 @@
* This does have:
*
* - Example of performing a git commit with a comment
- *
+ *
*/
int lg2_commit(git_repository *repo, int argc, char **argv)
{
@@ -36,10 +36,10 @@ int lg2_commit(git_repository *repo, int argc, char **argv)
git_oid commit_oid,tree_oid;
git_tree *tree;
- git_index *index;
+ git_index *index;
git_object *parent = NULL;
git_reference *ref = NULL;
- git_signature *signature;
+ git_signature *signature;
/* Validate args */
if (argc < 3 || strcmp(opt, "-m") != 0) {
@@ -62,9 +62,9 @@ int lg2_commit(git_repository *repo, int argc, char **argv)
check_lg2(git_index_write(index), "Could not write index", NULL);;
check_lg2(git_tree_lookup(&tree, repo, &tree_oid), "Error looking up tree", NULL);
-
+
check_lg2(git_signature_default(&signature, repo), "Error creating signature", NULL);
-
+
check_lg2(git_commit_create_v(
&commit_oid,
repo,
@@ -78,7 +78,9 @@ int lg2_commit(git_repository *repo, int argc, char **argv)
git_index_free(index);
git_signature_free(signature);
- git_tree_free(tree);
+ git_tree_free(tree);
+ git_object_free(parent);
+ git_reference_free(ref);
return error;
}