Skip to content

Commit

Permalink
[sanitizer] Fix compilation of the test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybuka committed Nov 2, 2021
1 parent e9ea992 commit 8cabd8f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -13,8 +13,8 @@ int main(int argc, char **argv) {
return 0;
}

posix_spawnattr_t attr = {};
posix_spawn_file_actions_t file_actions = {};
posix_spawnattr_t attr = {0};
posix_spawn_file_actions_t file_actions = {0};

char *const args[] = {
argv[0], "2", "3", "4", "2", "3", "4", "2", "3", "4",
Expand Down

0 comments on commit 8cabd8f

Please sign in to comment.