mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- Fix compile error in dnscrypt.
This commit is contained in:
parent
68027ab145
commit
b6f0b1af86
2 changed files with 2 additions and 1 deletions
|
|
@ -722,7 +722,7 @@ dnsc_load_local_data(struct dnsc_env* dnscenv, struct config_file *cfg)
|
||||||
if((unsigned)strlen(dnscenv->provider_name) >= (unsigned)0xffff0000) {
|
if((unsigned)strlen(dnscenv->provider_name) >= (unsigned)0xffff0000) {
|
||||||
/* guard against integer overflow in rrlen calculation */
|
/* guard against integer overflow in rrlen calculation */
|
||||||
verbose(VERB_OPS, "cert #%" PRIu32 " is too long", serial);
|
verbose(VERB_OPS, "cert #%" PRIu32 " is too long", serial);
|
||||||
continue
|
continue;
|
||||||
}
|
}
|
||||||
rrlen = strlen(dnscenv->provider_name) +
|
rrlen = strlen(dnscenv->provider_name) +
|
||||||
strlen(ttl_class_type) +
|
strlen(ttl_class_type) +
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@
|
||||||
reported by X41 D-Sec.
|
reported by X41 D-Sec.
|
||||||
- Fix Client NONCE Generation used for Server NONCE,
|
- Fix Client NONCE Generation used for Server NONCE,
|
||||||
reported by X41 D-Sec.
|
reported by X41 D-Sec.
|
||||||
|
- Fix compile error in dnscrypt.
|
||||||
|
|
||||||
2 December 2019: Wouter
|
2 December 2019: Wouter
|
||||||
- Merge pull request #122 from he32: In tcp_callback_writer(),
|
- Merge pull request #122 from he32: In tcp_callback_writer(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue