dhcp: allocate memory for dns

Type: fix

Signed-off-by: Aleksander Djuric <aleksander.djuric@gmail.com>
Change-Id: I56375d5d53eb07d80c1b12513798317f60c81a6d
Signed-off-by: Aleksander Djuric <aleksander.djuric@gmail.com>
This commit is contained in:
Aleksander Djuric
2019-10-30 12:26:46 +03:00
committed by Paul Vinciguerra
parent 97c998c281
commit 00217cb192
+8 -2
View File
@@ -372,11 +372,17 @@ send_dhcp_client_entry (const dhcp_client_t * client, void *arg)
{
dhcp_client_send_walk_ctx_t *ctx;
vl_api_dhcp_client_details_t *mp;
u32 count;
size_t n;
ctx = arg;
mp = vl_msg_api_alloc (sizeof (*mp));
clib_memset (mp, 0, sizeof (*mp));
count = vec_len (client->domain_server_address);
n = sizeof (*mp) + (count * sizeof (vl_api_domain_server_t));
mp = vl_msg_api_alloc (n);
if (!mp)
return 0;
clib_memset (mp, 0, n);
mp->_vl_msg_id = ntohs (VL_API_DHCP_CLIENT_DETAILS + REPLY_MSG_ID_BASE);
mp->context = ctx->context;