commit: save the commit buffer off when parsing a commit
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 26 May 2005 01:27:14 +0000 (18:27 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 26 May 2005 01:27:14 +0000 (18:27 -0700)
object.

A fair number of the users potentially want to look at the
commit objects more closely, and if you worry about memory
leaking in certain applications, you can always do a

free(commit->buffer);
commit->buffer = NULL;

by hand after parsing them.

commit.c
commit.h

index b4e000e..abbf155 100644 (file)
--- a/commit.c
+++ b/commit.c
@@ -103,6 +103,10 @@ int parse_commit(struct commit *item)
                             sha1_to_hex(item->object.sha1));
        }
        ret = parse_commit_buffer(item, buffer, size);
+       if (!ret) {
+               item->buffer = buffer;
+               return 0;
+       }
        free(buffer);
        return ret;
 }
index 620e936..0bb8779 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -14,6 +14,7 @@ struct commit {
        unsigned long date;
        struct commit_list *parents;
        struct tree *tree;
+       const char *buffer;
 };
 
 extern const char *commit_type;