]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix: nil: Silence potential divide by zero warning in qpmulti.c
authorMark Andrews <marka@isc.org>
Mon, 2 Jun 2025 23:40:43 +0000 (23:40 +0000)
committerMark Andrews <marka@isc.org>
Mon, 2 Jun 2025 23:40:43 +0000 (23:40 +0000)
commit029e17844b2a3ec8d5e52313747cf952ee422769
treed8626446786413d20a307e3df0bec057df9006fe
parent9ee1f50de00c7dcbcc3ea1bd5e8628209eaef2b2
parent081dbb110834dc76ae8978a6dd85097382c8e364
fix: nil: Silence potential divide by zero warning in qpmulti.c

Coverity flagged a potential divide by zero error in collect in
qpmulti.c when the elapsed time is zero but that is only called
once the elapsed time is greater than or equal to RUNTIME (1/4
second) so INSIST this is the case.

Closes #5329

Merge branch '5329-potential-divide-by-zero-in-qpmulti-c' into 'main'

See merge request isc-projects/bind9!10519