diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-22 20:41:06 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-22 20:41:06 -0700 |
commit | cc5a6b42dd64cdbc9767715c4ca475b70a995466 (patch) | |
tree | 117f9a93280a53bf215ba3541fb6ad86301c52f2 /ffi.c | |
parent | 871094e9ed8d9f737428f43283844d2c428e70fe (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |