projects
/
pazpar2-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c83516
)
Stupid pointer errors on refactoring
author
Dennis Schafroth
<dennis@indexdata.com>
Wed, 30 Mar 2011 14:13:22 +0000
(16:13 +0200)
committer
Dennis Schafroth
<dennis@indexdata.com>
Wed, 30 Mar 2011 14:13:22 +0000
(16:13 +0200)
src/eventl.c
patch
|
blob
|
history
diff --git
a/src/eventl.c
b/src/eventl.c
index
840b735
..
9804472
100644
(file)
--- 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;
}