Typo in ROMS/Modules/mod_ncparam.F

Bug reports, work arounds and fixes

Moderators: arango, robertson

Post Reply
Message
Author
stlaur
Posts: 34
Joined: Sun Jun 27, 2010 8:45 pm
Location: Old Dominion University

Typo in ROMS/Modules/mod_ncparam.F

#1 Unread post by stlaur »

In "develop" branch, in ROMS/Modules/mod_ncparam.F, lines 1087-1088 are:

Code: Select all

      IF (allocated(idsurT))      deallocate ( idsurT )
      IF (allocated(idsurT))      deallocate ( idzslT )
I suspect the second line should be:

Code: Select all

      IF (allocated(idzslT))      deallocate ( idzslT )

User avatar
arango
Site Admin
Posts: 1374
Joined: Wed Feb 26, 2003 4:41 pm
Location: DMCS, Rutgers University
Contact:

Re: Typo in ROMS/Modules/mod_ncparam.F

#2 Unread post by arango »

Yes, thank you! It happens after ROMS_finalize when all the model variables are deallocated before the run is completed. Hmm, I didn't get any error when I tested it. Sometimes, compilers ignore errors.

Post Reply