diff options
author | Lars Hjemli | 2006-12-16 14:58:20 +0100 |
---|---|---|
committer | Lars Hjemli | 2006-12-16 14:58:20 +0100 |
commit | aaa24bdd30303128bded8487cd9f63b54c3b8dcd (patch) | |
tree | 0fd8b32643c205d819f98a827eca3e78fad21bfa /ui-commit.c | |
parent | fa82b03e05366e3c6ca1b74c8c83d6e00e0ef1e6 (diff) | |
download | cgit-aaa24bdd30303128bded8487cd9f63b54c3b8dcd.tar.gz cgit-aaa24bdd30303128bded8487cd9f63b54c3b8dcd.tar.bz2 cgit-aaa24bdd30303128bded8487cd9f63b54c3b8dcd.zip |
Add cgit_free_commitinfo() and use where needed
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c')
-rw-r--r-- | ui-commit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ui-commit.c b/ui-commit.c index b441e14..f654208 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -61,8 +61,5 @@ void cgit_print_commit(const char *hex) | |||
61 | html("<div class='commit-msg'>"); | 61 | html("<div class='commit-msg'>"); |
62 | html_txt(info->msg); | 62 | html_txt(info->msg); |
63 | html("</div>"); | 63 | html("</div>"); |
64 | free(info->author); | 64 | cgit_free_commitinfo(info); |
65 | free(info->committer); | ||
66 | free(info->subject); | ||
67 | free(info); | ||
68 | } | 65 | } |