diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-08 21:53:40 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 21:53:40 -0400 | 
| commit | 60cc611f387cfaa97c816d0aa0ff3de2a4ab6b55 (patch) | |
| tree | 26b7476584242945d10e904a07786e8e4a66f28e | |
| parent | 9c6fc44a5904bfb158a08407958954ac101a6aaf (diff) | |
| parent | 007c3fa7dfc146244d3974955aa78eaacb1c2bf6 (diff) | |
Merge pull request #10677 from tokarevart/fix-warning
Fix a potentially uninitialized local variable warning causing a build error
| -rw-r--r-- | src/common/uuid.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/common/uuid.cpp b/src/common/uuid.cpp index 89e1ed225..035df7fe0 100644 --- a/src/common/uuid.cpp +++ b/src/common/uuid.cpp @@ -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; | 
