Browse Source

Zero the read buffer fully in read_socket_line and handle closed sockets gracefully

master
Con Kolivas 11 years ago
parent
commit
306392950f
  1. 7
      src/libckpool.c

7
src/libckpool.c

@ -471,16 +471,19 @@ out:
* memory in *buf */
int read_socket_line(connsock_t *cs, int timeout)
{
char readbuf[PAGESIZE], *eom = NULL;
size_t buflen = 0, bufofs = 0;
char *eom = NULL;
tv_t tv_timeout;
int ret, bufsiz;
fd_set rd;
dealloc(cs->buf);
if (unlikely(cs->fd < 0))
return -1;
bufsiz = PAGESIZE;
readbuf[bufsiz - 1] = '\0';
while (!eom) {
char readbuf[PAGESIZE] = {};
int extralen;
FD_ZERO(&rd);

Loading…
Cancel
Save