Adjustment of minimal size for a IsoExternalFilterCommand.behavior bit2 filter

This commit is contained in:
2009-03-29 18:45:00 +02:00
parent 2534be5b5d
commit d28351c5a4
2 changed files with 2 additions and 2 deletions

View File

@ -620,7 +620,7 @@ int iso_file_add_external_filter(IsoFile *file, IsoExternalFilterCommand *cmd,
if (cmd->behavior & (2 | 4)) {
original_size = iso_file_get_size(file);
if (original_size <= 0 ||
((cmd->behavior & 4) && original_size < 2048)) {
((cmd->behavior & 4) && original_size <= 2048)) {
return 2;
}
}