diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-02 12:33:42 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-02 13:25:38 -0600 |
commit | fb3ef957bbb6d674f7482572443a678e6b4a612e (patch) | |
tree | dfc5a8c071884b37f6e917269d48e0ad5ab3484d /src/common/hex_util.h | |
parent | 6baf965777145fd9c76bd06a3c140afa46a50e87 (diff) |
service: fs: Skip non user id folders
Diffstat (limited to 'src/common/hex_util.h')
-rw-r--r-- | src/common/hex_util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/hex_util.h b/src/common/hex_util.h index a00904939..618f53152 100644 --- a/src/common/hex_util.h +++ b/src/common/hex_util.h @@ -9,6 +9,7 @@ #include <string> #include <vector> #include <fmt/format.h> +#include "common/assert.h" #include "common/common_types.h" namespace Common { @@ -29,6 +30,8 @@ namespace Common { template <std::size_t Size, bool le = false> [[nodiscard]] constexpr std::array<u8, Size> HexStringToArray(std::string_view str) { + ASSERT_MSG(Size * 2 <= str.size(), "Invalid string size"); + std::array<u8, Size> out{}; if constexpr (le) { for (std::size_t i = 2 * Size - 2; i <= 2 * Size; i -= 2) { |