Skip to content

Commit

Permalink
Angr/Z3 do not handle inexplicit type cast well and run into errors i…
Browse files Browse the repository at this point in the history
…n symbolic execution. This will fix that error.
  • Loading branch information
DonggeLiu committed Nov 12, 2019
1 parent 25176bd commit 4dd772d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __VERIFIER.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ float __VERIFIER_nondet_float() {
return x;
}

float __VERIFIER_nondet_double() {
double __VERIFIER_nondet_double() {
double x = 0.0;
read(0, &x, sizeof(x));
printf(" <input type=\"double\">%f</input>\n", x);
Expand Down

0 comments on commit 4dd772d

Please sign in to comment.