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

vweb: fix a template leak

This commit is contained in:
Alexander Medvednikov
2020-07-01 17:04:30 +02:00
parent e78dc4d682
commit 5de0f944bd
2 changed files with 3 additions and 3 deletions

View File

@@ -115,9 +115,9 @@ pub fn (mut b Builder) str() string {
}
b.buf << `\0`
s := string(b.buf,b.len)
//bis := b.initial_size
bis := b.initial_size
//free(b.buf.data)
//b.buf = []byte{cap: bis}
b.buf = []byte{cap: bis}
b.len = 0
return s
}