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
Decompiler output
[0x00001149]> pdg undefined8 main(int argc, char **argv) { char **var_98h; int var_8ch; char *s; sym.imp.printf("stack at %p\n", &s); sym.imp.gets(&s); return 0; }
expected output should show the buffer size
char **var_98h; int var_8ch; char s[128];
original source code
int main(int argc, char **argv) { char buffer[128]; printf("stack at %p\n", (void*)&buffer); gets(buffer); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Decompiler output
expected output should show the buffer size
original source code
The text was updated successfully, but these errors were encountered: