FastCGI Developer's Kit README
------------------------------
- $Id: README,v 1.14 2002/02/01 19:43:28 robs Exp $
+ $Id: README,v 1.15 2002/02/19 00:45:54 robs Exp $
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
2.2.3
-----
+ *) Fix a bug that caused an assert to pop when an async file descriptor was
+ numbered greater than 16. Kevin Eye [eye@buffalo.edu]
+
*) Update the echo-cpp example to show the restoral of the original
streambufs. Trub, Vladimir [vtrub@purolator.com]
*/
#ifndef lint
-static const char rcsid[] = "$Id: os_unix.c,v 1.35 2002/01/03 15:12:50 robs Exp $";
+static const char rcsid[] = "$Id: os_unix.c,v 1.36 2002/02/19 00:45:55 robs Exp $";
#endif /* not lint */
#include "fcgi_config.h"
if(fd > maxFd)
maxFd = fd;
- if(index >= asyncIoTableSize) {
+ while (index >= asyncIoTableSize) {
GrowAsyncTable();
}
if(fd > maxFd)
maxFd = fd;
- if(index >= asyncIoTableSize) {
+ while (index >= asyncIoTableSize) {
GrowAsyncTable();
}