Skip to content
Snippets Groups Projects
Commit 9e9d679e authored by deuce's avatar deuce
Browse files

Re-remove the timeout stuff from pipereadline() (This time expunging all

remenents of the start variable).

Even under Win32, there is absolutely no code path that could possibly
result in a timeout.
parent 0f68129d
No related branches found
No related tags found
No related merge requests found
......@@ -1344,22 +1344,18 @@ static int pipereadline(int pipe, char *buf, size_t length, char *fullbuf, size_
{
char ch;
DWORD i;
time_t start;
int ret=0;
#ifndef _WIN32
struct timeval tv={0,0};
fd_set read_set;
#endif
start=time(NULL);
/* Terminate buffers */
if(buf != NULL)
buf[0]=0;
if(fullbuf != NULL)
fullbuf[0]=0;
for(i=0;TRUE;) {
if(time(NULL)-start>startup->max_cgi_inactivity)
return(-1);
#if defined(_WIN32)
ret=0;
ReadFile(pipe, &ch, 1, (DWORD*)&ret, NULL);
......@@ -1373,8 +1369,6 @@ static int pipereadline(int pipe, char *buf, size_t length, char *fullbuf, size_
ret=read(pipe, &ch, 1);
#endif
if(ret==1) {
start=time(NULL);
if(fullbuf != NULL && i < (fullbuf_len-1)) {
fullbuf[i]=ch;
fullbuf[i+1]=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment