Bug: Old size check of array size before upscaling is not adapted
In line 512 in mo_mpr_data_array_upscale.f90, there is still
if (size(currentArray) < 0_i4) then
which needs to be
if (size(currentArray, i16) > int(huge(0_i8), i16)) then.
The UFZ services GitLab and Mattermost will be unavailable on Monday, March 09 from 06:00 AM to 09:00 AM due to maintenance work.
In line 512 in mo_mpr_data_array_upscale.f90, there is still
if (size(currentArray) < 0_i4) then
which needs to be
if (size(currentArray, i16) > int(huge(0_i8), i16)) then.