diff options
author | Dave Barach <dave@barachs.net> | 2020-04-08 08:14:57 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-04-08 16:29:44 +0000 |
commit | 954c707972bf7efcd227e26d9679544813a78115 (patch) | |
tree | 99e3ff617ceaef9c94f5cb33176ac14d248a316b /src/plugins/dhcp/dhcp6_pd_client_dp.c | |
parent | 8d0d8d2fcccd77e462f30b21f7f8810db312ee62 (diff) |
misc: check return values from vlib_buffer_copy(...)
vlib_buffer_copy(...) returns NULL if the system is temporarily out of
buffers.
This is NOT correct. Please don't be this person:
c0 = vlib_buffer_copy (vm, p0);
ci0 = vlib_get_buffer_index (vm, c0);
Type: fix
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Ic25ef58965871ea5d2b40904df9506803f69e47e
Diffstat (limited to 'src/plugins/dhcp/dhcp6_pd_client_dp.c')
-rw-r--r-- | src/plugins/dhcp/dhcp6_pd_client_dp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/dhcp/dhcp6_pd_client_dp.c b/src/plugins/dhcp/dhcp6_pd_client_dp.c index 980c83c7bbe..b43e5a4754d 100644 --- a/src/plugins/dhcp/dhcp6_pd_client_dp.c +++ b/src/plugins/dhcp/dhcp6_pd_client_dp.c @@ -264,6 +264,9 @@ check_pd_send_client_message (vlib_main_t * vm, next_index = ip6_rewrite_mcast_node.index; c0 = vlib_buffer_copy (vm, p0); + if (c0 == NULL) + return client_state->keep_sending_client_message; + ci0 = vlib_get_buffer_index (vm, c0); ip = (ip6_header_t *) vlib_buffer_get_current (c0); |