mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
IOS/ES: Fix a ticket validity check
This commit is contained in:
parent
5535afcb2a
commit
cc5b5c15ac
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ void TicketReader::SetBytes(std::vector<u8>&& bytes)
|
|||
|
||||
bool TicketReader::IsValid() const
|
||||
{
|
||||
return m_bytes.size() % sizeof(Ticket) == 0;
|
||||
return !m_bytes.empty() && m_bytes.size() % sizeof(Ticket) == 0;
|
||||
}
|
||||
|
||||
void TicketReader::DoState(PointerWrap& p)
|
||||
|
|
Loading…
Add table
Reference in a new issue