Small correction to commit 6241141

This commit is contained in:
Thomas Schmitt 2020-12-07 20:59:14 +01:00
parent 62411411db
commit 2a20e93b13
1 changed files with 2 additions and 1 deletions

View File

@ -6108,7 +6108,8 @@ int iso_image_import(IsoImage *image, IsoDataSource *src,
(*features)->tree_loaded = 0;
if (data->iso_root_block == data->svd_root_block)
(*features)->tree_loaded = 1;
else if (data->iso_root_block == data->evd_root_block)
else if (data->iso_root_block == data->evd_root_block &&
data->iso_root_block != data->pvd_root_block)
(*features)->tree_loaded = 2;
(*features)->rr_loaded = (data->rr != RR_EXT_NO);
}