Skip to content

Commit

Permalink
increase limits
Browse files Browse the repository at this point in the history
  • Loading branch information
syoyo committed Oct 14, 2023
1 parent 9305364 commit ce2a632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crate-reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5693,7 +5693,7 @@ bool CrateReader::ReadFieldSets() {
}

if (num_fieldsets > _config.maxNumFieldSets) {
PUSH_ERROR_AND_RETURN_TAG(kTag, "Too many FieldSets");
PUSH_ERROR_AND_RETURN_TAG(kTag, fmt::format("Too many FieldSets {}. maxNumFieldSets is set to {}", num_fieldsets, _config.maxNumFieldSets));
}

CHECK_MEMORY_USAGE(size_t(num_fieldsets) * sizeof(uint32_t));
Expand Down

0 comments on commit ce2a632

Please sign in to comment.