From: Wilfried Göesgens Date: Sun, 21 Feb 2010 20:03:27 +0000 (+0000) Subject: * free the subjects of the tabs X-Git-Tag: v7.86~394 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=00dc71d3c0697c6f4ce3ac0718fc92a2de467b94 * free the subjects of the tabs --- 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]); }