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

picohttpparser: fix setting of req.body

This commit is contained in:
Delyan Angelov 2021-05-03 16:55:13 +03:00
parent 5b826b2663
commit 07f00440bf
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -2,7 +2,7 @@ module picohttpparser
pub struct Request {
mut:
prev_len int
prev_len int
pub mut:
method string
path string
@ -27,6 +27,7 @@ pub fn (mut r Request) parse_request(s string, max_headers int) int {
}
r.num_headers = u64(num_headers)
}
r.body = unsafe { (&s.str[pret]).vstring_literal_with_len(s.len - pret) }
r.prev_len = s.len
return pret
}