aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ctimeline.c5
-rw-r--r--ui-common.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ctimeline.c b/ctimeline.c
index f2a114a..31c0e1b 100644
--- a/ctimeline.c
+++ b/ctimeline.c
@@ -31,10 +31,15 @@ static void prepare_context()
*/
static void forget_context()
{
+ int i;
string_release(ctx.head_title);
string_release(ctx.css);
string_release(ctx.header_title);
string_release(ctx.header_desc);
+ for(i = 0; i < ctx.branches.count; i++) {
+ string_release(ctx.branches.list[i].name);
+ string_release(ctx.branches.list[i].desc);
+ }
free(ctx.branches.list);
}
diff --git a/ui-common.c b/ui-common.c
index 87bae9a..a417180 100644
--- a/ui-common.c
+++ b/ui-common.c
@@ -63,8 +63,6 @@ void print_timelines()
"</li>\n",
(i % 2) ? "left" : "right", br->name->s,
br->age_from, br->age_to, br->desc->s);
- string_release(br->name);
- string_release(br->desc);
}
printf("</ul>\n");