summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-22 20:41:06 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-22 20:41:06 -0700
commitcc5a6b42dd64cdbc9767715c4ca475b70a995466 (patch)
tree117f9a93280a53bf215ba3541fb6ad86301c52f2 /ffi.c
parent871094e9ed8d9f737428f43283844d2c428e70fe (diff)
downloadtxr-cc5a6b42dd64cdbc9767715c4ca475b70a995466.tar.gz
txr-cc5a6b42dd64cdbc9767715c4ca475b70a995466.tar.bz2
txr-cc5a6b42dd64cdbc9767715c4ca475b70a995466.zip
ffi: fix crash: carray argument type.
* ffi.c (make_ffi_type_pointer): Set the by_value_in flag only if the in function has been specified. Otherwise tft->in is a null pointer and will be used if this pointer type appears as an argument.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi.c b/ffi.c
index a83eea09..31956a8c 100644
--- a/ffi.c
+++ b/ffi.c
@@ -3164,7 +3164,7 @@ static val make_ffi_type_pointer(val syntax, val lisp_type,
tft->alloc = ffi_fixed_alloc;
tft->dynsize = ffi_fixed_dynsize;
tft->free = free;
- tft->by_value_in = 1;
+ tft->by_value_in = (in != 0);
return obj;
}