diff options
author | Benoît Ganne <bganne@cisco.com> | 2021-09-08 15:36:56 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-10-07 15:36:04 +0000 |
commit | 9685624a50613344ad6cc1405fa561ea86888f06 (patch) | |
tree | e6c473c77117ea8f775743d489c4b8d39bc5cc22 /src/plugins/crypto_native/aes.h | |
parent | 9888fdad4170627b0b26c902cc22d9df23ba56c2 (diff) |
vppinfra: asan: improve overflow semantic
Type: improvement
Change-Id: Ia63899b82e34f179f9efa921e4630b598f2a86cb
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/plugins/crypto_native/aes.h')
-rw-r--r-- | src/plugins/crypto_native/aes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/crypto_native/aes.h b/src/plugins/crypto_native/aes.h index 762d528d064..24b111aea82 100644 --- a/src/plugins/crypto_native/aes.h +++ b/src/plugins/crypto_native/aes.h @@ -119,7 +119,7 @@ aes_load_partial (u8x16u * p, int n_bytes) __m128i zero = { }; return (u8x16) _mm_mask_loadu_epi8 (zero, (1 << n_bytes) - 1, p); #else - return aes_byte_mask (CLIB_MEM_OVERFLOW_LOAD (*, p), n_bytes); + return aes_byte_mask (CLIB_MEM_OVERFLOW_LOAD (p), n_bytes); #endif } |