]> code.citadel.org Git - citadel.git/commit - webcit/webserver.c
* Call to accept() was being made with an uninitialized variable for the
authorArt Cancro <ajc@citadel.org>
Mon, 17 Mar 2003 04:17:41 +0000 (04:17 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 17 Mar 2003 04:17:41 +0000 (04:17 +0000)
commitc0e75429a4b7de66b110e45e0b7d214052f7bc25
tree16fb95d0535876e737fb81e8554f45fb46aedbcd
parent1ceb6b6976f74ec692336253b8b5a9a128debfd3
* Call to accept() was being made with an uninitialized variable for the
  third argument.  Changed the second and third argument to NULL and 0 because
  we don't really need accept() to fill up a buffer full of information that
  we'll never use.  (Thanks to SteveV for reporting the bug and helping to
  troubleshoot it.)
* Removed the mutex wrapper around select() because we don't need it.  All
  idle worker threads now block on select() and one of them will wake up when
  a connection arrives.
webcit/ChangeLog
webcit/webserver.c