Unidiff1 files changed, 1 insertions, 4 deletions
|
diff --git a/ui-log.c b/ui-log.c index c52af79..b7da49f 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -27,12 +27,9 @@ void print_commit(struct commit *commit) |
27 | html_link_close(); |
27 | html_link_close(); |
28 | html("</td><td>"); |
28 | html("</td><td>"); |
29 | html_txt(info->author); |
29 | html_txt(info->author); |
30 | html("</td></tr>\n"); |
30 | html("</td></tr>\n"); |
31 | free(info->author); |
31 | cgit_free_commitinfo(info); |
32 | free(info->committer); |
| |
33 | free(info->subject); |
| |
34 | free(info); |
| |
35 | } |
32 | } |
36 | |
33 | |
37 | |
34 | |
38 | void cgit_print_log(const char *tip, int ofs, int cnt) |
35 | void cgit_print_log(const char *tip, int ofs, int cnt) |
|