X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Feventl.c;h=9804472457f59f61e616a1a166666ec9d552fcb2;hb=646158a86d80e5ef0221ef7d7ce2cfc6ba31eacc;hp=8fd9a67cfbf8944bab7645ae999fcca69c0de941;hpb=1be4984bbab36c389d47bc16c19412ad007cf0cc;p=pazpar2-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index 8fd9a67..9804472 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -72,7 +72,7 @@ static int iochan_use(int delta) no_iochans += delta; if (delta > 0) no_iochans_total += delta; - iochans = no_clients; + iochans = no_iochans; yaz_mutex_leave(g_mutex); yaz_log(YLOG_DEBUG, "%s iochans=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), iochans); return iochans; @@ -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(iochan); + *nextp = iochan_destroy_real(p); } else nextp = &p->next; }