mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-11 10:40:56 -04:00
Break out of the switch if we have already reached the quota
This prevents consume_validation_fail being called and causing an INSIST.
This commit is contained in:
parent
970ac03196
commit
26375bdcf2
1 changed files with 1 additions and 0 deletions
|
|
@ -1482,6 +1482,7 @@ again:
|
|||
consume_validation(val);
|
||||
if (over_max_fails(val)) {
|
||||
result = ISC_R_QUOTA;
|
||||
break;
|
||||
}
|
||||
consume_validation_fail(val);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue