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
.
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
.