Explorar o código

hex_util: Fix incorrect array size in AsArray

Although this isn't used, this is a potential bug as HexStringToArray will perform an out-of-bounds read.
Morph %!s(int64=5) %!d(string=hai) anos
pai
achega
7b39215c8a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/common/hex_util.h

+ 1 - 1
src/common/hex_util.h

@@ -61,7 +61,7 @@ template <typename ContiguousContainer>
     return out;
 }
 
-[[nodiscard]] constexpr std::array<u8, 16> AsArray(const char (&data)[17]) {
+[[nodiscard]] constexpr std::array<u8, 16> AsArray(const char (&data)[33]) {
     return HexStringToArray<16>(data);
 }