Sfoglia il codice sorgente

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 5 anni fa
parent
commit
7b39215c8a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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);
 }