Loader: fix missing reassignment in AutoCloseMap

This commit is contained in:
Michael Scire 2018-04-26 19:43:26 -06:00
parent 1d73bd0a12
commit 789afe7929

View file

@ -66,6 +66,7 @@ class AutoCloseMap {
if (R_FAILED(svcUnmapProcessMemory(this->mapped_address, this->process_handle, this->base_address, this->size))) {
/* TODO: panic(). */
}
this->mapped_address = NULL;
}
}
};