summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-04-29 06:51:55 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-04-29 06:51:55 -0700
commit47a170b8c143143d0eb2a0b778c583b3a370c587 (patch)
treee255ff981e6e0262aa77ce09d69c3465f04b5278 /ffi.c
parentd2ae9d8070d38221ee323b6679152bbbc4d7acd7 (diff)
downloadtxr-47a170b8c143143d0eb2a0b778c583b3a370c587.tar.gz
txr-47a170b8c143143d0eb2a0b778c583b3a370c587.tar.bz2
txr-47a170b8c143143d0eb2a0b778c583b3a370c587.zip
ffi: correct treatment of (ptr buf).
The buf FFI type's alloc virtual should return a pointer to the buffer's pointer, not the buffer itself. What's currently going on is something silly, whereby the pointer to the buffer is stored into the buffer itself. * buf.c (buf_addr_of): New function. * buf.c (buf_addr_of): Declared. * ffi.c (ffi_buf_alloc): Use buf_addr_of instead of buf_get.
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 aa55a39e..cad0376d 100644
--- a/ffi.c
+++ b/ffi.c
@@ -642,7 +642,7 @@ static val ffi_buf_get(struct txr_ffi_type *tft, mem_t *src, val self)
static mem_t *ffi_buf_alloc(struct txr_ffi_type *tft, val buf, val self)
{
(void) tft;
- return buf_get(buf, self);
+ return coerce(mem_t *, buf_addr_of(buf, self));
}
static void ffi_ptr_walk(struct txr_ffi_type *tft, mem_t *ctx,