Save the value of arguments in a seperate buffer for the post callback.
Compiler optimizations might cause the registers or stack space to be reused and overwritten during function execution if the value isn't needed anymore at some point. This lead to different values in the post hook.
Now the post callback is guaranteed to have access to the same arguments the function was called with.
Save the value of arguments in a seperate buffer for the post callback. Compiler optimizations might cause the registers or stack space to be reused and overwritten during function execution if the value isn't needed anymore at some point. This lead to different values in the post hook.
Now the post callback is guaranteed to have access to the same arguments the function was called with.
2