We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The libemu library calls exit() where it should most probably return with some error code.
==== How to reproduce ===== grep -n -R -e "exit(" * src/emu_shellcode.c:304: exit(-1); src/emu_string.c:81: exit(-1);
$ readelf -s /usr/lib64/libemu.so |grep exit 29: 0000000000000000 0 FUNC GLOBAL DEFAULT UND exit@GLIBC_2.2.5 (3)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The libemu library calls exit() where it should most probably return with some error code.
==== How to reproduce =====
grep -n -R -e "exit(" *
src/emu_shellcode.c:304: exit(-1);
src/emu_string.c:81: exit(-1);
$ readelf -s /usr/lib64/libemu.so |grep exit
29: 0000000000000000 0 FUNC GLOBAL DEFAULT UND exit@GLIBC_2.2.5 (3)
The text was updated successfully, but these errors were encountered: