diff options
| -rw-r--r-- | Str.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -48,6 +48,8 @@ Str  Strnew_size(int n)  {      Str x = GC_MALLOC(sizeof(struct _Str)); +    if (n < 0) +	n = 0;      x->ptr = GC_MALLOC_ATOMIC(n + 1);      x->ptr[0] = '\0';      x->area_size = n + 1; | 
