ECC-1475: Check return size of md5 keys

This commit is contained in:
Shahram Najm 2022-11-16 17:49:45 +00:00
parent b27ced91d3
commit 0786d4c84b
1 changed files with 1 additions and 1 deletions

View File

@ -271,6 +271,6 @@ static void destroy(grib_context* c, grib_accessor* a)
static int value_count(grib_accessor* a, long* count)
{
*count = 16;
*count = 1; /* ECC-1475 */
return 0;
}