summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-05-23 21:03:00 -0400
committerGitHub <noreply@github.com>2022-05-23 21:03:00 -0400
commit92d77d0e87a5f2a8c9c9b2431ffd264cb664e17a (patch)
treedd620abe1b30b90e27672d882ac8325346ce7751 /src
parente504f90fe9123d256f6bc556badb25d1d0aa7046 (diff)
downloadlibffi-92d77d0e87a5f2a8c9c9b2431ffd264cb664e17a.tar.gz
Don't dereference beyond the last array entry. (#667)
Diffstat (limited to 'src')
-rw-r--r--src/moxie/ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moxie/ffi.c b/src/moxie/ffi.c
index 1a65660..41e20fe 100644
--- a/src/moxie/ffi.c
+++ b/src/moxie/ffi.c
@@ -245,7 +245,7 @@ void ffi_closure_eabi (unsigned arg1, unsigned arg2, unsigned arg3,
start looking at the those passed on the stack. */
if (ptr == (char *) &register_args[6])
ptr = stack_args;
- else if (ptr == (char *) &register_args[7])
+ else if (ptr == (register_args + sizeof(register_args)))
ptr = stack_args + 4;
}