X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Feventl.c;h=5c77f49382ba8233a7173a2a1051de014b656b20;hb=0bb0ee0e00d750808e228b991c78cb4838bc989d;hp=562587c7e8a6649aae6ed88bd763126433959d8b;hpb=846689d992d2183563cba6aa5f52f60dc8b14ab4;p=pazpar2-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index 562587c..5c77f49 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2011 Index Data + Copyright (C) 2006-2013 Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -20,7 +20,7 @@ /* * Based on ParaZ - a simple tool for harvesting performance data for * parallel operations using Z39.50. - * Copyright (C) 2006-2011 Index Data ApS + * Copyright (C) 2006-2013 Index Data ApS * See LICENSE file for details. */ @@ -123,7 +123,7 @@ IOCHAN iochan_destroy_real(IOCHAN chan) IOCHAN next = chan->next; if (chan->name) xfree(chan->name); - xfree(free); + xfree(chan); iochan_use(-1); return next; } @@ -336,7 +336,7 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) { for (nextp = iochans; *nextp;) { IOCHAN p = *nextp; if (p->destroyed && p->thread_users == 0) { - *nextp = iochan_destroy_real(*nextp); + *nextp = iochan_destroy_real(p); } else nextp = &p->next; }