dpdk: fix ipsec coverity warning
CID 170475 Change-Id: I9748dd56bdcb62e68d8f672e5b1619a3be400b8f Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
This commit is contained in:
@ -362,8 +362,8 @@ dpdk_esp_encrypt_node_fn (vlib_main_t * vm,
|
|||||||
if (sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128)
|
if (sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128)
|
||||||
{
|
{
|
||||||
u32 *esp_iv =
|
u32 *esp_iv =
|
||||||
(u32 *) vlib_buffer_get_current (b0) + ip_hdr_size +
|
(u32 *) (b0->data + b0->current_data + ip_hdr_size +
|
||||||
sizeof (esp_header_t);
|
sizeof (esp_header_t));
|
||||||
esp_iv[0] = sa0->seq;
|
esp_iv[0] = sa0->seq;
|
||||||
esp_iv[1] = sa0->seq_hi;
|
esp_iv[1] = sa0->seq_hi;
|
||||||
sym_cop->cipher.data.offset =
|
sym_cop->cipher.data.offset =
|
||||||
|
Reference in New Issue
Block a user