* src/otvalid/otvcommn.c (otv_FeatureList_validate): Fix array size check.

Reported by Marc Schönefeld.
This commit is contained in:
Werner Lemberg
2025-12-02 11:30:08 +01:00
parent c54f1cbfa9
commit 85161d7622

View File

@@ -488,7 +488,7 @@
OTV_TRACE(( " (FeatureCount = %u)\n", FeatureCount ));
OTV_LIMIT_CHECK( FeatureCount * 2 );
OTV_LIMIT_CHECK( FeatureCount * 6 );
otvalid->lookup_count = otv_LookupList_get_count( lookups );