Fixes my issue #71
It seems like on line 325 there was an assigment to params[3] which is out of bounds. This undefined behaviour causes problems on aarch64.
WARNING: I only tested this on aarch64, since I don't have an x86 box laying around, but it shouldnt cause any issues.
Btw there are a few other problems on aarch64 due to rouge pointer comparaisons, which I will try to address in the next PR.
Fixes my issue #71 It seems like on line 325 there was an assigment to
params[3]
which is out of bounds. This undefined behaviour causes problems on aarch64. WARNING: I only tested this on aarch64, since I don't have an x86 box laying around, but it shouldnt cause any issues. Btw there are a few other problems on aarch64 due to rouge pointer comparaisons, which I will try to address in the next PR.