diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-10-26 19:58:11 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-10-26 19:58:11 -0700 |
commit | 0da6cb45f260699fab94828110b9840783d8e079 (patch) | |
tree | 2ff1f94b35fdde71d5f3137804dcc3d699549dd2 /ffi.c | |
parent | 9de33100603b178b93e7c949edc266cc6bb724f6 (diff) | |
download | txr-0da6cb45f260699fab94828110b9840783d8e079.tar.gz txr-0da6cb45f260699fab94828110b9840783d8e079.tar.bz2 txr-0da6cb45f260699fab94828110b9840783d8e079.zip |
carray: bugfix: allow negative indexing in ref operation.
* ffi.c (carray_ref): If the index is negative,
displace it by the length of the array. (Then if
it is still negative, the function will throw.)
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4888,6 +4888,9 @@ val carray_ref(val carray, val idx) struct carray *scry = carray_struct_checked(carray); cnum ix = c_num(idx); + if (ix < 0) + ix += scry->nelem; + if (ix < 0 || (scry->nelem >= 0 && ix >= scry->nelem)) { uw_throwf(error_s, lit("~a: ~s: index ~s out of bounds"), self, carray, idx, nao); |