Comment Built In Limit? (Score 1) 49
> The software had a built-in limit of 200 bot detection features. The enlarged file contained more than 200 entries. The software crashed when it encountered the unexpected file size.
A built in limit is:
if ( rule_count > 200 )
log_urgent('rule count exceeded')
break
else
rule_count++
process_rule
This sounds like it did not have a built-in limit but rather walked off the end of an array or something when the count went over 200.