ECC-1602: Minor change

This commit is contained in:
Eugen Betke 2023-06-01 12:45:21 +00:00
parent c5c5ba8017
commit 021de6c4c7
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ static int unpack(grib_accessor* a, T* val, size_t* len)
nbytes = (bits_per_value + 7) / 8;
if (nbytes == 3)
nbytes = 4
nbytes = 4;
size = n_vals * nbytes;
decoded = (unsigned char*)grib_context_buffer_malloc_clear(a->context, size);