summaryrefslogtreecommitdiffstats
path: root/src/common/hex_util.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-03 17:10:24 +0100
committerGitHub <noreply@github.com>2024-02-03 17:10:24 +0100
commit81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8 (patch)
tree09c5d5a938c235529e9debcd9a218e5a419282e8 /src/common/hex_util.h
parentMerge pull request #12877 from german77/npad-fixed (diff)
parentservice: fs: Skip non user id folders (diff)
downloadyuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar.gz
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar.bz2
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar.lz
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar.xz
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.tar.zst
yuzu-81cc4df1f9a511d86b52acbb4e3df2f5e36f83f8.zip
Diffstat (limited to 'src/common/hex_util.h')
-rw-r--r--src/common/hex_util.h3
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) {