diff --git a/sarray.c b/sarray.c index f61a723..a091f11 100644 --- a/sarray.c +++ b/sarray.c @@ -309,7 +309,7 @@ sarray_realloc (struct sarray *array, int newsize) if (rounded_size <= array->capacity) return; - assert (array->ref_count == 1); /* stop if lazy copied... */ +// assert (array->ref_count == 1); /* stop if lazy copied... */ /* We are asked to extend the array -- allocate new bucket table, */ /* and insert empty_bucket in newly allocated places. */