summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-10-26 19:58:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-10-26 19:58:11 -0700
commit0da6cb45f260699fab94828110b9840783d8e079 (patch)
tree2ff1f94b35fdde71d5f3137804dcc3d699549dd2 /ffi.c
parent9de33100603b178b93e7c949edc266cc6bb724f6 (diff)
downloadtxr-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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ffi.c b/ffi.c
index 82a28b5b..67ced1f0 100644
--- a/ffi.c
+++ b/ffi.c
@@ -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);