Skip to content

Commit

Permalink
- correct memory deallocation
Browse files Browse the repository at this point in the history
- enable debug for win action
  • Loading branch information
mjr-deltares committed Jan 25, 2025
1 parent f1109db commit 7bdd2b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
debug: true
# windows, release mode
- os: windows-2022
debug: false
debug: true
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion src/Utilities/Performance/Profiler.f90
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ subroutine destroy(this)

call this%callstack%destroy()

do i = 1, this%nr_sections
do i = 1, MAX_NR_TIMED_SECTIONS
call this%all_sections(i)%children%destroy()
end do
deallocate (this%all_sections)
Expand Down

0 comments on commit 7bdd2b4

Please sign in to comment.