Skip to content

Commit

Permalink
intentionally add a bounds issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Mar 9, 2024
1 parent 05d4957 commit 70a2bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exec/science/subchandra/problem_initialize_state_data.H
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void problem_initialize_state_data (int i, int j, int k,

burn_state.rho = state(i,j,k,URHO);
burn_state.T = state(i,j,k,UTEMP);
for (int n = 0; n < NumSpec; n++) {
for (int n = 0; n <= NumSpec; n++) {
burn_state.xn[n] = state(i,j,k,UFS+n);
}

Expand Down

0 comments on commit 70a2bc2

Please sign in to comment.