From b05ad7f6b1dc5ea7383626aacb9d9041a9ce93f1 Mon Sep 17 00:00:00 2001 From: danyaberezun Date: Thu, 16 Jan 2020 16:38:00 +0300 Subject: [PATCH] fix issue #15 --- runtime/runtime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/runtime.c b/runtime/runtime.c index edbc2e97b..73dd2b802 100644 --- a/runtime/runtime.c +++ b/runtime/runtime.c @@ -689,12 +689,12 @@ extern void* Bstring (void *p) { int n = strlen (p); void *s; - __pre_gc (); + // __pre_gc (); s = LmakeString (BOX(n)); strncpy (s, p, n + 1); - __post_gc (); + // __post_gc (); return s; }