diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/network/lookup_name.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/lookup_name.c b/src/network/lookup_name.c index 066be4d5..209c20f0 100644 --- a/src/network/lookup_name.c +++ b/src/network/lookup_name.c @@ -111,6 +111,7 @@ static int dns_parse_callback(void *c, int rr, const void *data, int len, const { char tmp[256]; struct dpc_ctx *ctx = c; + if (ctx->cnt >= MAXADDRS) return -1; switch (rr) { case RR_A: if (len != 4) return -1; |