mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12:00
cellGameExec: add param checks
This commit is contained in:
parent
f9cab3270f
commit
d4285fb196
1 changed files with 20 additions and 0 deletions
|
@ -15,6 +15,11 @@ s32 cellGameGetHomeDataExportPath(vm::ptr<char> exportPath)
|
||||||
{
|
{
|
||||||
cellGameExec.warning("cellGameGetHomeDataExportPath(exportPath=*0x%x)", exportPath);
|
cellGameExec.warning("cellGameGetHomeDataExportPath(exportPath=*0x%x)", exportPath);
|
||||||
|
|
||||||
|
if (!exportPath)
|
||||||
|
{
|
||||||
|
return CELL_GAME_ERROR_PARAM;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: PlayStation home is defunct.
|
// TODO: PlayStation home is defunct.
|
||||||
|
|
||||||
return CELL_GAME_ERROR_NOAPP;
|
return CELL_GAME_ERROR_NOAPP;
|
||||||
|
@ -30,6 +35,11 @@ s32 cellGameGetHomeDataImportPath(vm::ptr<char> importPath)
|
||||||
{
|
{
|
||||||
cellGameExec.warning("cellGameGetHomeDataImportPath(importPath=*0x%x)", importPath);
|
cellGameExec.warning("cellGameGetHomeDataImportPath(importPath=*0x%x)", importPath);
|
||||||
|
|
||||||
|
if (!importPath)
|
||||||
|
{
|
||||||
|
return CELL_GAME_ERROR_PARAM;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: PlayStation home is defunct.
|
// TODO: PlayStation home is defunct.
|
||||||
|
|
||||||
return CELL_GAME_ERROR_NOAPP;
|
return CELL_GAME_ERROR_NOAPP;
|
||||||
|
@ -39,6 +49,11 @@ s32 cellGameGetHomeLaunchOptionPath(vm::ptr<char> commonPath, vm::ptr<char> pers
|
||||||
{
|
{
|
||||||
cellGameExec.todo("cellGameGetHomeLaunchOptionPath(commonPath=%s, personalPath=%s)", commonPath, personalPath);
|
cellGameExec.todo("cellGameGetHomeLaunchOptionPath(commonPath=%s, personalPath=%s)", commonPath, personalPath);
|
||||||
|
|
||||||
|
if (!commonPath || !personalPath)
|
||||||
|
{
|
||||||
|
return CELL_GAME_ERROR_PARAM;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: PlayStation home is not supported atm.
|
// TODO: PlayStation home is not supported atm.
|
||||||
return CELL_GAME_ERROR_NOAPP;
|
return CELL_GAME_ERROR_NOAPP;
|
||||||
}
|
}
|
||||||
|
@ -47,6 +62,11 @@ s32 cellGameGetBootGameInfo(vm::ptr<u32> type, vm::ptr<char> dirName, vm::ptr<u3
|
||||||
{
|
{
|
||||||
cellGameExec.todo("cellGameGetBootGameInfo(type=*0x%x, dirName=%s, execdata=*0x%x)", type, dirName, execdata);
|
cellGameExec.todo("cellGameGetBootGameInfo(type=*0x%x, dirName=%s, execdata=*0x%x)", type, dirName, execdata);
|
||||||
|
|
||||||
|
if (!type || !dirName) // execdata can be NULL
|
||||||
|
{
|
||||||
|
return CELL_GAME_ERROR_PARAM;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Support more boot types
|
// TODO: Support more boot types
|
||||||
*type = CELL_GAME_GAMETYPE_SYS;
|
*type = CELL_GAME_GAMETYPE_SYS;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue