[XAM] Added missing nullptr check during Spa loading

This commit is contained in:
Gliniak 2025-03-07 20:58:45 +01:00
parent 523a2dc6e3
commit 6666b803fd
1 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,9 @@ bool XamState::IsUserSignedIn(uint64_t xuid) const {
}
void XamState::LoadSpaInfo(const SpaInfo* info) {
if (!info) {
return;
}
// Check if we have loaded SpaInfo already. If yes then check currently loaded
// version.
if (spa_info_) {