You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that when I try to call the originalFunctionReentryIsland from my override function (or any function) with any custom variables other than the true variables passed by the program my application crashes. For example:
void (*_real_function)(void *arg1, float arg2, float arg3);
I notice that when I try to call the originalFunctionReentryIsland from my override function (or any function) with any custom variables other than the true variables passed by the program my application crashes. For example:
void (*_real_function)(void *arg1, float arg2, float arg3);
void _hook_function(void _arg1, float arg2, float arg3) {
(__real_function)(arg1, arg2, arg3); // Doesn't crash here.
(*_real_function)(arg1, 0.0, 0.0); // Crashes here.
}
If anyone could help with a fix or at least confirm that this is an error that would be great. Thanks.
The text was updated successfully, but these errors were encountered: