summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-07-13 23:00:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2020-07-13 23:00:21 -0700
commite4c37c9d72d733f601b2e604a6368391e432e8b0 (patch)
tree0d3228e22e0872bc58e7f4dca330723ac0ab6938 /ffi.c
parent43fd9fce6cbaa5ca5b7d18b6e094cd09eb2bf499 (diff)
downloadtxr-e4c37c9d72d733f601b2e604a6368391e432e8b0.tar.gz
txr-e4c37c9d72d733f601b2e604a6368391e432e8b0.tar.bz2
txr-e4c37c9d72d733f601b2e604a6368391e432e8b0.zip
cptr: bugfix: cptr-out must fall back on tft->put.
* ffi.c (cptr_out): tft->out may be null, in which case tft->put must be used.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ffi.c b/ffi.c
index 1099f7fc..a0f58e9b 100644
--- a/ffi.c
+++ b/ffi.c
@@ -5974,7 +5974,10 @@ static val cptr_out(val cptr, val obj, val type_in)
val type = default_arg(type_in, ffi_type_lookup_checked(self, cptr->co.cls));
struct txr_ffi_type *tft = ffi_type_struct_checked(self, type);
if (data != 0) {
- tft->out(tft, 0, obj, data, self);
+ if (tft->out != 0)
+ tft->out(tft, 0, obj, data, self);
+ else
+ tft->put(tft, obj, data, self);
return obj;
}
uw_throwf(type_error_s, lit("~a: ~s is a null pointer"), self, cptr, nao);