summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorKhang <khang06@users.noreply.github.com>2026-07-15 02:12:31 -0400
committerKhang <khang06@users.noreply.github.com>2026-07-15 02:12:31 -0400
commit900febec29bcfee8b7a1319ec74d9cb1bfb9d157 (patch)
tree1b60ba185ea57374be6523bc1fe663d80c3e7109 /Source/Core/DiscIO
parent774200dcf4ccea148ef357cc8cf86d8eab4446da (diff)
IOS/ES: Prevent reading TMDs that are too small
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/VolumeWad.cpp2
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;
}