Skip to content
Snippets Groups Projects
Commit 38d34fa0 authored by deuce's avatar deuce
Browse files

If get_req() fails, disable keep-alive so the session will terminate.

Thanks to Digitalman for tracking this one down.
parent 35533eb2
Branches
Tags
No related merge requests found
......@@ -4201,6 +4201,10 @@ void http_session_thread(void* arg)
}
}
}
else {
session.req.keep_alive=FALSE;
break;
}
}
close_request(&session);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment