From 530b981765b96e5837fcf8bbb2e41f8f2b5b8968 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 12 Mar 2021 01:11:39 +0300 Subject: [PATCH] vweb: mark send_response_to_client with [manualfree] --- vlib/vweb/vweb.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 00e5ea803d..7ebbade04d 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -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