This commit is contained in:
danyaberezun 2020-01-16 16:38:00 +03:00
parent 149984f5c0
commit b05ad7f6b1

View file

@ -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;
}