From aaa24bdd30303128bded8487cd9f63b54c3b8dcd Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sat, 16 Dec 2006 14:58:20 +0100 Subject: Add cgit_free_commitinfo() and use where needed Signed-off-by: Lars Hjemli --- cgit.h | 2 ++ shared.c | 10 ++++++++++ ui-commit.c | 5 +---- ui-log.c | 5 +---- ui-summary.c | 1 + 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/cgit.h b/cgit.h index f06a941..02cc26a 100644 --- a/cgit.h +++ b/cgit.h @@ -65,6 +65,8 @@ extern void cgit_global_config_cb(const char *name, const char *value); extern void cgit_repo_config_cb(const char *name, const char *value); extern void cgit_querystring_cb(const char *name, const char *value); +extern void *cgit_free_commitinfo(struct commitinfo *info); + extern char *fmt(const char *format,...); extern void html(const char *txt); diff --git a/shared.c b/shared.c index 4574120..b576df8 100644 --- a/shared.c +++ b/shared.c @@ -88,3 +88,13 @@ void cgit_querystring_cb(const char *name, const char *value) } } +void *cgit_free_commitinfo(struct commitinfo *info) +{ + free(info->author); + free(info->author_email); + free(info->committer); + free(info->committer_email); + free(info->subject); + free(info); + return NULL; +} 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) html("
"); html_txt(info->msg); html("
"); - free(info->author); - free(info->committer); - free(info->subject); - free(info); + cgit_free_commitinfo(info); } diff --git a/ui-log.c b/ui-log.c index c52af79..b7da49f 100644 --- a/ui-log.c +++ b/ui-log.c @@ -28,10 +28,7 @@ void print_commit(struct commit *commit) html(""); html_txt(info->author); html("\n"); - free(info->author); - free(info->committer); - free(info->subject); - free(info); + cgit_free_commitinfo(info); } diff --git a/ui-summary.c b/ui-summary.c index 8ff3642..5ddeee3 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -35,6 +35,7 @@ static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, html(""); html_txt(info->author); html("\n"); + cgit_free_commitinfo(info); } else { html(""); html_txt(buf); -- cgit v1.2.1