]> git.pond.sub.org Git - empserver/commitdiff
(ioq_destroy) [aix, NeXT]: Remove special case, which leaked memory,
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 22 Oct 2005 18:28:11 +0000 (18:28 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 22 Oct 2005 18:28:11 +0000 (18:28 +0000)
because freeing it didn't work at some time.  Well, it either works
now, or we'll find out what's wrong.

src/lib/gen/ioqueue.c

index 16ab4fd3e3d96ffd12ce203880a42c827ef5ec48..39868edbf8dde8781561b08f8a846aa6405dfc58 100644 (file)
@@ -80,10 +80,7 @@ ioq_create(int size)
 void
 ioq_destroy(struct ioqueue *ioq)
 {
-#if !defined(aix) && !defined(NeXT)
-/* ioq_drain doesn't work under aix or NeXT... dunno why --ts */
     ioq_drain(ioq);
-#endif /* aix */
     free(ioq);
 }