ladybird/Userland/Libraries/LibCrypto/Authentication
Daniel Bertalan a2aae6a582 LibCrypto: Remove redundant __builtin_memset() call
This call caused GCC 12's static analyzer to think that we perform an
out-of-bounds write to the v_key Vector. This is obviously incorrect,
and comes from the fact that GCC doesn't properly track whether we use
the inline storage, or the Vector is allocated on the heap.

While searching for a workaround, Sam pointed out that this call is
redundant as `Vector::resize()` already zeroes out the elements, so we
can completely remove it.

Co-authored-by: Sam Atkins <atkinssj@serenityos.org>
2021-12-24 14:35:33 -08:00
..
GHash.cpp LibCrypto+LibTLS: Avoid unaligned reads and writes 2021-05-14 08:39:29 +01:00
GHash.h Everywhere: Pass AK::ReadonlyBytes by value 2021-11-11 01:27:46 +01:00
HMAC.h LibCrypto: Remove redundant __builtin_memset() call 2021-12-24 14:35:33 -08:00