From e7e24d8eb5cb6d46aba865d391119963d822306a Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 11 Nov 2024 09:22:28 +0100 Subject: [PATCH] rec: fix coverity 1564914 (afaiks harmless) --- pdns/recursordist/rec-xfr.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/rec-xfr.hh b/pdns/recursordist/rec-xfr.hh index 5adc78bfc7..541255c7ec 100644 --- a/pdns/recursordist/rec-xfr.hh +++ b/pdns/recursordist/rec-xfr.hh @@ -48,8 +48,8 @@ struct ZoneXFRParams TSIGTriplet tsigtriplet; size_t maxReceivedMBytes{0}; size_t zoneSizeHint{0}; - size_t zoneIdx; - uint32_t refreshFromConf; + size_t zoneIdx{0}; + uint32_t refreshFromConf{0}; uint16_t xfrTimeout{20}; }; -- 2.47.2