bufr_compare blacklisting: See ECC-245, GRIB-573, GRIB-915

This commit is contained in:
Shahram Najm 2017-04-27 14:52:53 +01:00
parent 1bd373efbe
commit 331e6d9f3d
1 changed files with 3 additions and 1 deletions

View File

@ -1169,12 +1169,14 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt
/* mask only if no -c option or headerMode (-H)*/
if (blacklist && ( !listFromCommandLine || headerMode )) {
/* See ECC-245, GRIB-573, GRIB-915: Do not change handles in memory */
/*
grib_string_list* nextb=blacklist;
while (nextb) {
grib_clear(handle1,nextb->value);
grib_clear(handle2,nextb->value);
nextb=nextb->next;
}
}*/
}
if ( listFromCommandLine && onlyListed ) {