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

vweb: mark send_response_to_client with [manualfree]

This commit is contained in:
Alexander Medvednikov 2021-03-12 01:11:39 +03:00
parent c40ab0db72
commit 530b981765

View File

@ -88,6 +88,7 @@ pub struct Result {
}
// vweb intern function
[manualfree]
pub fn (mut ctx Context) send_response_to_client(mimetype string, res string) bool {
if ctx.done {
return false