diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-03-21 11:52:38 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-03-22 08:15:36 -0700 |
commit | 4836fb69ecb23561ae2462071aa15cf44f0eaa87 (patch) | |
tree | f846a6ec4b65fa010ab036a77970ee1798b4f33f | |
parent | 886edd92b48ae472511f3468fa4a31fd63e82829 (diff) | |
download | txr-4836fb69ecb23561ae2462071aa15cf44f0eaa87.tar.gz txr-4836fb69ecb23561ae2462071aa15cf44f0eaa87.tar.bz2 txr-4836fb69ecb23561ae2462071aa15cf44f0eaa87.zip |
ffi: fix missing support for misaligned ushort.
* ffi.c (ffi_ushort_get): Add the missing align_sw_get macro
that checks for and handles misalignment.
Commit e539fbc2af3bd4a5bd4ca3d9b567862005509aa1 made on
2017-06-05 added these macros and fixes to numerous functions.
The commit message claims that ffi_ushort_get was among the
functions fixed, but no change was made to the function.
-rw-r--r-- | ffi.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -739,10 +739,12 @@ static void ffi_ushort_put(struct txr_ffi_type *tft, val n, mem_t *dst, static val ffi_ushort_get(struct txr_ffi_type *tft, mem_t *src, val self) { + align_sw_get(unsigned short, src); unsigned short n = *coerce(unsigned short *, src); (void) tft; (void) self; return num_fast(n); + align_sw_end; } static void ffi_int_put(struct txr_ffi_type *tft, val n, mem_t *dst, val self) |