ecl_alloc_filename: don't set a fill-pointer for the allocated filename

This was copied from the allocation code for base strings but is not
needed here.
This commit is contained in:
Marius Gerbershagen 2023-02-18 17:25:40 +01:00
parent de89593216
commit 15955de1f4

View file

@ -119,7 +119,6 @@ ecl_alloc_filename(cl_index len, cl_object adjustable)
ECL_NIL, /* displaced */
ECL_NIL); /* displaced-offset */
ret->vector.self.b16[len] = 0;
ret->vector.fillp = ret->vector.dim = len;
return ret;
}