From 9685624a50613344ad6cc1405fa561ea86888f06 Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Wed, 8 Sep 2021 15:36:56 +0200 Subject: vppinfra: asan: improve overflow semantic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Type: improvement Change-Id: Ia63899b82e34f179f9efa921e4630b598f2a86cb Signed-off-by: Benoît Ganne --- src/plugins/crypto_native/aes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins') 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 } -- cgit 1.2.3-korg