From: Marc Cromme Date: Wed, 11 Apr 2007 11:01:45 +0000 (+0000) Subject: remember to free memory, otherwise leaking X-Git-Tag: PAZPAR2.1.0.0~330 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=196a967a618ddf80e64f5589187fb981d3c4bbec;p=pazpar2-moved-to-github.git remember to free memory, otherwise leaking --- diff --git a/src/config.c b/src/config.c index 7c4942e..eec1bc8 100644 --- a/src/config.c +++ b/src/config.c @@ -1,4 +1,4 @@ -/* $Id: config.c,v 1.23 2007-04-10 08:48:56 adam Exp $ +/* $Id: config.c,v 1.24 2007-04-11 11:01:45 marc Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -19,7 +19,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: config.c,v 1.23 2007-04-10 08:48:56 adam Exp $ */ +/* $Id: config.c,v 1.24 2007-04-11 11:01:45 marc Exp $ */ #include @@ -191,6 +191,7 @@ static struct conf_service *parse_service(xmlNode *node) xmlFree(brief); xmlFree(sortkey); xmlFree(merge); + xmlFree(type); xmlFree(termlist); xmlFree(rank); md_node++;