Skip to content
Snippets Groups Projects
Commit 8de4c1b7 authored by rswindell's avatar rswindell
Browse files

The timeout parameter to js_socket_recv() is in seconds. I don't think

Deuce really wanted to pass 1000 as a value here (use 1 instead). I don't
know if this was an observable problem or not, but it certainly *looks*
like a bug.
parent d2694c08
No related branches found
No related tags found
No related merge requests found
......@@ -1411,7 +1411,7 @@ js_recvline(JSContext *cx, uintN argc, jsval *arglist)
}
}
if((got=js_socket_recv(p, &ch, 1, 0, i?1000:timeout))!=1) {
if((got=js_socket_recv(p, &ch, 1, 0, i?1:timeout))!=1) {
if(p->session==-1) {
p->last_error=ERROR_VALUE;
break;
......
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