From b6f0b1af86ba1916e32357e96249791c51f45b2f Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Tue, 3 Dec 2019 16:44:24 +0100 Subject: [PATCH] - Fix compile error in dnscrypt. --- dnscrypt/dnscrypt.c | 2 +- doc/Changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dnscrypt/dnscrypt.c b/dnscrypt/dnscrypt.c index 6d187a748..843735018 100644 --- a/dnscrypt/dnscrypt.c +++ b/dnscrypt/dnscrypt.c @@ -722,7 +722,7 @@ dnsc_load_local_data(struct dnsc_env* dnscenv, struct config_file *cfg) if((unsigned)strlen(dnscenv->provider_name) >= (unsigned)0xffff0000) { /* guard against integer overflow in rrlen calculation */ verbose(VERB_OPS, "cert #%" PRIu32 " is too long", serial); - continue + continue; } rrlen = strlen(dnscenv->provider_name) + strlen(ttl_class_type) + diff --git a/doc/Changelog b/doc/Changelog index 099db0484..6b646b3f1 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -28,6 +28,7 @@ reported by X41 D-Sec. - Fix Client NONCE Generation used for Server NONCE, reported by X41 D-Sec. + - Fix compile error in dnscrypt. 2 December 2019: Wouter - Merge pull request #122 from he32: In tcp_callback_writer(),