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
Translating the following program results in a segmentation fault:
int *a; int b; int c(int e, int *g) { for (;;) for (b = 1; e; b++) if (a[b]) { *g = b; return 1; } } int main() { int d, f = c(d, &f); }
This is caused by the value of variable being null in ModuleToAutomata.cpp:448
variable
ModuleToAutomata.cpp:448
The text was updated successfully, but these errors were encountered:
Fix segfault when variable in a nested loop is output of parent loop (f…
2a04d54
…ixes ftsrg#72)
No branches or pull requests
Translating the following program results in a segmentation fault:
This is caused by the value of
variable
being null inModuleToAutomata.cpp:448
The text was updated successfully, but these errors were encountered: