Make "parse_object()" also fill in commit message buffer data.

And teach fsck to free it to save memory.
This commit is contained in:
Linus Torvalds
2005-05-25 19:26:28 -07:00
parent a6f68d4767
commit bd1e17e245
3 changed files with 7 additions and 1 deletions

View File

@ -14,7 +14,7 @@ struct commit {
unsigned long date;
struct commit_list *parents;
struct tree *tree;
const char *buffer;
char *buffer;
};
extern const char *commit_type;