Don't report for <= 4 sized option parameters.

Also don't crash in sceKernelCreateVTimer(NULL, NULL).
This commit is contained in:
Unknown W. Brackets 2013-07-06 21:42:15 -07:00
parent 0019666939
commit bf652e4f46
3 changed files with 13 additions and 5 deletions

View file

@ -292,7 +292,7 @@ int sceKernelCreateSema(const char* name, u32 attr, int initVal, int maxVal, u32
if (optionPtr != 0)
{
u32 size = Memory::Read_U32(optionPtr);
if (size != 0)
if (size > 4)
WARN_LOG_REPORT(HLE, "sceKernelCreateSema(%s) unsupported options parameter, size = %d", name, size);
}
if ((attr & ~PSP_SEMA_ATTR_PRIORITY) != 0)