Merge pull request #6422 from sepalani/nullptr-blank

HLE: Improve format string detection heuristic
This commit is contained in:
Léo Lam 2018-03-08 17:26:09 +01:00 committed by GitHub
commit 1eae5fe790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -47,8 +47,10 @@ void HLE_GeneralDebugPrint(ParameterType parameter_type)
{
std::string report_message;
// Is gpr3 pointing to a pointer rather than an ASCII string
if (PowerPC::HostIsRAMAddress(GPR(3)) && PowerPC::HostIsRAMAddress(PowerPC::HostRead_U32(GPR(3))))
// Is gpr3 pointing to a pointer (including nullptr) rather than an ASCII string
if (PowerPC::HostIsRAMAddress(GPR(3)) &&
(PowerPC::HostIsRAMAddress(PowerPC::HostRead_U32(GPR(3))) ||
PowerPC::HostRead_U32(GPR(3)) == 0))
{
if (PowerPC::HostIsRAMAddress(GPR(4)))
{