From: djm@openbsd.org Date: Tue, 11 Jun 2024 01:21:41 +0000 (+0000) Subject: upstream: move tree init before possible early return X-Git-Tag: V_9_8_P1~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82c836df4ff41145553cd7adb11c5b985aeaa06f;p=thirdparty%2Fopenssh-portable.git upstream: move tree init before possible early return OpenBSD-Commit-ID: 72e2c5b69f151c08a7c5bf5ad929b97a92c273df --- diff --git a/srclimit.c b/srclimit.c index 5b5e688af..bac8ef667 100644 --- a/srclimit.c +++ b/srclimit.c @@ -108,6 +108,8 @@ srclimit_init(int max, int persource, int ipv4len, int ipv6len, penalty_cfg = *penalty_conf; penalty_exempt = penalty_exempt_conf == NULL ? NULL : xstrdup(penalty_exempt_conf); + RB_INIT(&penalties_by_addr); + RB_INIT(&penalties_by_expiry); if (max_persource == INT_MAX) /* no limit */ return; debug("%s: max connections %d, per source %d, masks %d,%d", __func__, @@ -117,8 +119,6 @@ srclimit_init(int max, int persource, int ipv4len, int ipv6len, children = xcalloc(max_children, sizeof(*children)); for (i = 0; i < max_children; i++) children[i].id = -1; - RB_INIT(&penalties_by_addr); - RB_INIT(&penalties_by_expiry); } /* returns 1 if connection allowed, 0 if not allowed. */