Brief summary of bug
General bug information
Does this bug cause significantly incorrect results in the model's science?
No
Details of bug
In Line 305, CTSM/tools/mksurfdata_esmf/src/mkurbanparMod.F90,
if (allocated(data_o)) deallocate(data_o)
allocate(data_o(max_regions, ns_o), stat=ier)
if (ier/=0) call shr_sys_abort('error allocating data_i(max_regions, ns_o)')
The data_i(max_regions, ns_o) should be data_o(max_regions, ns_o).
Brief summary of bug
General bug information
Does this bug cause significantly incorrect results in the model's science?
No
Details of bug
In Line 305, CTSM/tools/mksurfdata_esmf/src/mkurbanparMod.F90,
The
data_i(max_regions, ns_o)should bedata_o(max_regions, ns_o).