From 2430521c846ea1506936f6d7f6ad730ecfa9a26a Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 9 Apr 2019 12:20:10 +0200 Subject: newruntime: fixes memory leak --- lib/core/strs.nim | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/core/strs.nim b/lib/core/strs.nim index f02757070..767e897c8 100644 --- a/lib/core/strs.nim +++ b/lib/core/strs.nim @@ -163,11 +163,12 @@ proc mnewString(len: int): NimStringV2 {.compilerProc.} = result = NimStringV2(len: len, p: p) proc setLengthStrV2(s: var NimStringV2, newLen: int) {.compilerRtl.} = - if newLen > s.len or isLiteral(s): + if newLen == 0: + frees(s) + s.p = nil + elif newLen > s.len or isLiteral(s): prepareAdd(s, newLen - s.len) s.len = newLen - # this also only works because the destructor - # looks at s.p and not s.len proc nimAsgnStrV2(a: var NimStringV2, b: NimStringV2) {.compilerRtl.} = # self assignment is fine! -- cgit 1.4.1-2-gfad0