mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +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
|
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)
|
void TicketReader::DoState(PointerWrap& p)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue