ES: Make sure the TMD and ticket are valid before use

This commit is contained in:
Léo Lam 2017-02-14 13:15:02 +01:00
commit 44a3db21e4
3 changed files with 12 additions and 7 deletions

View file

@ -156,6 +156,11 @@ CNANDContentLoader::~CNANDContentLoader()
{
}
bool CNANDContentLoader::IsValid() const
{
return m_Valid && m_tmd.IsValid();
}
const SNANDContent* CNANDContentLoader::GetContentByIndex(int index) const
{
for (auto& Content : m_Content)