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/asmrewriter.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bruiser/asmrewriter.c') diff --git a/bruiser/asmrewriter.c b/bruiser/asmrewriter.c index 694a6fe..d8401c4 100644 --- a/bruiser/asmrewriter.c +++ b/bruiser/asmrewriter.c @@ -62,6 +62,7 @@ int jmpt_push_args(lua_State* __ls, JMP_S_T* jmpt) { lua_pushinteger(__ls, jmpt->y); lua_pushinteger(__ls, jmpt->n); lua_pushinteger(__ls, jmpt->z); + return 0; } int new_jmpt_2(lua_State* __ls) { @@ -166,7 +167,7 @@ static int X(lua_State* __ls) { \ X_LIST_GEN #undef X #undef X_LIST_GEN -#undef SET_GENERATOR +#undef GET_GENERATOR static int next(lua_State* __ls) { JMP_S_T* dummy = check_jmpt(__ls, 1); @@ -249,6 +250,7 @@ int jmpt_set_next_n(lua_State* __ls) { static int jmpt_gc(lua_State* __ls) { JMP_S_T* dummy = check_jmpt(__ls,1); //freejmptable(dummy); + return 0; } static int jmpt_tostring(lua_State* __ls) { -- cgit v1.2.3