From 9ac6539198e34919dd9cfd83556739a7a67d551e Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 18 Feb 2007 21:50:52 +0000 Subject: [PATCH] Fixed minor memory leak --- index/alvis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index/alvis.c b/index/alvis.c index fad3671..4ae6140 100644 --- a/index/alvis.c +++ b/index/alvis.c @@ -1,4 +1,4 @@ -/* $Id: alvis.c,v 1.12 2007-02-12 10:33:51 adam Exp $ +/* $Id: alvis.c,v 1.13 2007-02-18 21:50:52 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -345,6 +345,7 @@ static void filter_destroy(void *clientData) { struct filter_info *tinfo = clientData; destroy_schemas(tinfo); + xfree(tinfo->full_name); if (tinfo->reader) xmlFreeTextReader(tinfo->reader); odr_destroy(tinfo->odr); -- 1.7.10.4