Opened 17 years ago
Closed 17 years ago
#225 closed bug (Fixed)
Uninitialised string in error message.
Reported by: | ianthomas | Owned by: | arango |
---|---|---|---|
Priority: | trivial | Milestone: | Release ROMS/TOMS 3.2 |
Component: | Nonlinear | Version: | 3.2 |
Keywords: | Cc: |
Description (last modified by )
In Utility/get_varcoords.F line 91, the variable 'name' is used in an error message without it being initialised. A similar error message on line 85 has the correct initialisation on the previous line. The solution is therefore to insert the line
status=nf90_inquire_variable(ncid, ncvarid, name)
before line 91.
Change History (1)
comment:1 by , 17 years ago
Description: | modified (diff) |
---|---|
Milestone: | Release ROMS/TOMS 3.0 → Release ROMS/TOMS 3.1 |
Resolution: | → Fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Yes, thank you.