Skip to content

Commit

Permalink
Merge pull request #577 from paulromano/fission-segfault-fix
Browse files Browse the repository at this point in the history
Prevent segfault when user specifies '18' on tally scores
  • Loading branch information
Will Boyd committed Jan 28, 2016
2 parents 40038df + 51deaa7 commit 1abb847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input_xml.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3247,7 +3247,7 @@ subroutine read_tallies_xml()
call fatal_error("Cannot tally absorption rate with an outgoing &
&energy filter.")
end if
case ('fission')
case ('fission', '18')
t % score_bins(j) = SCORE_FISSION
if (t % find_filter(FILTER_ENERGYOUT) > 0) then
call fatal_error("Cannot tally fission rate with an outgoing &
Expand Down

0 comments on commit 1abb847

Please sign in to comment.