diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2026-07-15 22:08:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-15 22:08:12 +0200 |
| commit | 81402ca6aa93503be38736b5dd6d8d96fcbfd0d5 (patch) | |
| tree | 13c6337658baf008a429dba9b4f622e64074d28f /Source/Core/DiscIO/VolumeWad.cpp | |
| parent | fd8391a85241d1b359d662342c5c66f8f4b96d10 (diff) | |
| parent | 900febec29bcfee8b7a1319ec74d9cb1bfb9d157 (diff) | |
Merge pull request #14732 from khang06/small-tmd-check
IOS/ES: Prevent reading TMDs that are too small
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index 39961a6c18..974592fea0 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -51,7 +51,7 @@ VolumeWAD::VolumeWAD(std::unique_ptr<BlobReader> reader) : m_reader(std::move(re if (!IOS::ES::IsValidTMDSize(m_tmd_size)) { - ERROR_LOG_FMT(DISCIO, "TMD is too large: {} bytes", m_tmd_size); + ERROR_LOG_FMT(DISCIO, "TMD has an invalid size: {} bytes", m_tmd_size); return; } |
