From: Dennis Schafroth Date: Wed, 30 Mar 2011 14:13:22 +0000 (+0200) Subject: Stupid pointer errors on refactoring X-Git-Tag: v1.5.6~13 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=2a5ea4b8e8163f827c269241d21d1850164bac8e;p=pazpar2-moved-to-github.git Stupid pointer errors on refactoring --- diff --git a/src/eventl.c b/src/eventl.c index 840b735..9804472 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -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; }