picohttpparser: fix setting of req.body

pull/9880/head^2
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
1 changed files with 2 additions and 1 deletions

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
}