diff options
| author | Joshua Vandaƫle <joshua@vandaele.software> | 2026-07-15 15:36:38 +0200 |
|---|---|---|
| committer | Joshua Vandaƫle <joshua@vandaele.software> | 2026-07-25 05:19:26 +0200 |
| commit | 682490c220cc5c557a4777489515be226aa12b01 (patch) | |
| tree | fb2094eb29fd572b7aefe60ad473a04538321257 | |
| parent | 69527ec44ba85625512a5aef16da785cab1c8573 (diff) | |
FileSystemCommon: Resolve maybe-uninitialized warning
| -rw-r--r-- | Source/Core/Core/IOS/FS/FileSystemCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/FS/FileSystemCommon.cpp b/Source/Core/Core/IOS/FS/FileSystemCommon.cpp index aa99f46da3..0e13192c5b 100644 --- a/Source/Core/Core/IOS/FS/FileSystemCommon.cpp +++ b/Source/Core/Core/IOS/FS/FileSystemCommon.cpp @@ -147,7 +147,7 @@ void FileSystem::DoStateRead(PointerWrap& p, const std::string& directory_path) return; } - Metadata metadata; + Metadata metadata{}; p.Do(metadata.uid); p.Do(metadata.gid); p.Do(metadata.attribute); |
