mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
steam_helper: Catch JSON exceptions
This commit is contained in:
parent
432cb93797
commit
ee8e065367
1 changed files with 10 additions and 1 deletions
|
|
@ -397,7 +397,16 @@ static bool convert_linux_vrpaths(void)
|
|||
|
||||
static void setup_vrpaths(void)
|
||||
{
|
||||
if(!convert_linux_vrpaths())
|
||||
bool success = false;
|
||||
|
||||
try{
|
||||
success = convert_linux_vrpaths();
|
||||
}catch(std::exception e){
|
||||
WINE_ERR("got error parsing vrpaths file\n");
|
||||
success = false;
|
||||
}
|
||||
|
||||
if(!success)
|
||||
{
|
||||
/* delete the windows file only if the linux conversion fails */
|
||||
WCHAR windows_vrpaths[MAX_PATH];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue