Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto GitFlow - main β†’ develop #3235

Merged
merged 5 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.51.1] - 2024-12-10

### Fixed

- Properly nullified the pointers to the per-grid-cell counters

## [2.51.0] - 2024-12-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif ()

project (
MAPL
VERSION 2.51.0
VERSION 2.51.1
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
6 changes: 6 additions & 0 deletions generic/GenericCplComp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,12 @@ subroutine Initialize(CC, SRC, DST, CLOCK, RC)
_VERIFY(STATUS)
allocate(STATE%ARRAY_COUNT (NCPLS), STAT=STATUS)
_VERIFY(STATUS)
DO J = 1, NCPLS
NULLIFY(STATE%ARRAY_COUNT(J)%ptr1c)
NULLIFY(STATE%ARRAY_COUNT(J)%ptr2c)
NULLIFY(STATE%ARRAY_COUNT(J)%ptr3c)
NULLIFY(STATE%ARRAY_COUNT(J)%ptr4c)
END DO
allocate(STATE%ACCUM_RANK (NCPLS), STAT=STATUS)
_VERIFY(STATUS)
allocate(STATE%couplerType(NCPLS), STAT=STATUS)
Expand Down
Loading