Skip to content

Commit

Permalink
use correct suberror type (#1442)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Jan 14, 2025
1 parent e7c6d71 commit e52035e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/box.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3850,7 +3850,7 @@ Error Box_EntityToGroup::parse(BitstreamRange& range, const heif_security_limits
sstr << "entity group box contains " << nEntities << " entities, but the security limit is set to " << limits->max_size_entity_group << " entities.";

return {heif_error_Invalid_input,
heif_suberror_End_of_data,
heif_suberror_Security_limit_exceeded,
sstr.str()};
}

Expand Down

0 comments on commit e52035e

Please sign in to comment.