Skip to content

Commit

Permalink
Update 07-larger_example.c
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanschmidt authored Aug 9, 2023
1 parent f4d74e2 commit a24546f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/regression/73-strings/07-larger_example.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ int main() {
strcpy(user, "++++++++"); // WARN

char pwd_gen[20];
for (size_t i = 12; i < 20; i++)
pwd_gen[i] = (char) (rand() % 123);

char* p1 = "hello";
char* p2 = "12345";
Expand All @@ -33,4 +35,4 @@ int main() {
__goblint_check(pwd_len == 9);

return 0;
}
}

0 comments on commit a24546f

Please sign in to comment.