From 627285af23f77be115a29aeda296b694d332f0e8 Mon Sep 17 00:00:00 2001 From: Ralph Dolmans Date: Wed, 15 Jan 2020 23:19:24 +0100 Subject: [PATCH] - Fix faulty assert --- util/net_help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/net_help.c b/util/net_help.c index 2b624be8f..21367ebd9 100644 --- a/util/net_help.c +++ b/util/net_help.c @@ -342,7 +342,7 @@ static int ipdnametoaddr(uint8_t* dname, size_t dnamelen, ia[i] = (uint8_t)chunk; i--; } else { - log_assert(i < 15 && i >= 1); + log_assert(i < 16 && i >= 1); /* ia in network byte order */ ia[i-1] = (uint8_t)(chunk >> 8); ia[i] = (uint8_t)(chunk & 0x00FF);