From: Adam Dickmeiss Date: Thu, 22 Jun 2006 22:58:59 +0000 (+0000) Subject: Fixed leak in rset_dup. It leaked rs->control handles. X-Git-Tag: before.bug.529~10 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=9d5bfe73fd06d99c306f91860a322aece5b6f4fc Fixed leak in rset_dup. It leaked rs->control handles. --- diff --git a/rset/rset.c b/rset/rset.c index ef3696d..780727a 100644 --- a/rset/rset.c +++ b/rset/rset.c @@ -1,4 +1,4 @@ -/* $Id: rset.c,v 1.53 2006-05-10 08:13:33 adam Exp $ +/* $Id: rset.c,v 1.54 2006-06-22 22:58:59 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -175,6 +175,7 @@ RSET rset_create_base(const struct rset_control *sel, rset->hits_limit = 0; rset->hits_round = 1000; rset->keycontrol = kcontrol; + (*kcontrol->inc)(kcontrol); rset->scope = scope; rset->term = term; @@ -243,7 +244,6 @@ RSET rset_dup (RSET rs) (rs->refcount)++; yaz_log(log_level, "rs_dup(%s), rs=%p, refcount=%d", rs->control->desc, rs, rs->refcount); - (*rs->keycontrol->inc)(rs->keycontrol); return rs; }