1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: fix body size calculation (#6122)

This commit is contained in:
spaceface777 2020-08-13 19:55:33 +02:00 committed by GitHub
parent da7adb5b1b
commit 2353814821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -255,7 +255,6 @@ fn handle_conn<T>(conn net.Socket, mut app T) {
mut body := ''
mut in_headers := true
mut len := 0
mut body_len := 0
//for line in lines[1..] {
for _ in 0..100 {
//println(j)
@ -281,9 +280,8 @@ fn handle_conn<T>(conn net.Socket, mut app T) {
//println('GOT CL=$len')
}
} else {
body += sline + '\r\n'
body_len += body.len
if body_len >= len {
body += line
if body.len >= len {
break
}
//println('body:$body')