Merge pull request #10677 from tokarevart/fix-warning

Fix a potentially uninitialized local variable warning causing a build error
This commit is contained in:
liamwhite 2023-06-08 21:53:40 -04:00 committed by GitHub
commit 60cc611f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ std::array<u8, 0x10> ConstructFromRawString(std::string_view raw_string) {
}
std::array<u8, 0x10> ConstructFromFormattedString(std::string_view formatted_string) {
std::array<u8, 0x10> uuid;
std::array<u8, 0x10> uuid{};
size_t i = 0;