aboutsummaryrefslogtreecommitdiffstats
path: root/net/dns_resolver
diff options
context:
space:
mode:
Diffstat (limited to 'net/dns_resolver')
-rw-r--r--net/dns_resolver/dns_query.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/dns_resolver/dns_query.c b/net/dns_resolver/dns_query.c
index e7b6d53eef88..6853d22ebc07 100644
--- a/net/dns_resolver/dns_query.c
+++ b/net/dns_resolver/dns_query.c
@@ -149,7 +149,9 @@ int dns_query(const char *type, const char *name, size_t namelen,
149 if (!*_result) 149 if (!*_result)
150 goto put; 150 goto put;
151 151
152 memcpy(*_result, upayload->data, len + 1); 152 memcpy(*_result, upayload->data, len);
153 *_result[len] = '\0';
154
153 if (_expiry) 155 if (_expiry)
154 *_expiry = rkey->expiry; 156 *_expiry = rkey->expiry;
155 157