From 5de630461628e95a7460f16574242f897f874a94 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sat, 19 May 2018 04:05:03 +0430 Subject: fixes #33. fixed #34. python interpreter should clean up after itself properly so maybe #32 is also sovled but i need more time to know. the stack usage for lua has been reduced so larger number of xobjs are fine now. general cleanup for executioner and bruiser. added a note regarding running obfuscators test. lua no longer needs libreadline to build. bfds test no longer needs libbfd to build. --- bruiser/bruiserffi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bruiser/bruiserffi.c') diff --git a/bruiser/bruiserffi.c b/bruiser/bruiserffi.c index 371176c..c548aa5 100644 --- a/bruiser/bruiserffi.c +++ b/bruiser/bruiserffi.c @@ -163,7 +163,9 @@ void* ffi_callX(int argc, const char** arg_string, ffi_type rtype, void* x_ptr, return NULL; } + fprintf(stdout, "before the ffi call\n"); ffi_call(&cif, FFI_FN(x_ptr), &ret, values); + fprintf(stdout, "after the ffi call\n"); return ret; } -- cgit v1.2.3