Closed erikd closed 7 years ago
Noticed there was some C code, had a look an noticed an off by one error. If len is an actual length and the first index is 0 then all indices should be < len.
len
0
< len
Ta
Noticed there was some C code, had a look an noticed an off by one error. If
len
is an actual length and the first index is0
then all indices should be< len
.