From 00dc71d3c0697c6f4ce3ac0718fc92a2de467b94 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 21 Feb 2010 20:03:27 +0000 Subject: [PATCH] * free the subjects of the tabs --- webcit/subst.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcit/subst.c b/webcit/subst.c index 4f43197cb..6bb180197 100644 --- a/webcit/subst.c +++ b/webcit/subst.c @@ -2599,6 +2599,8 @@ void tmpl_do_tabbed(StrBuf *Target, WCTemplputParams *TP) DoTemplate(TKEY(i * 2 + 1), Target, TP); StrEndTab(Target, i, nTabs); } + for (i = 0; i < ntabs; i++) + FreeStrBuf(&TabNames[i]); } -- 2.30.2