mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 22:20:31 +00:00
ignore return value of init_content_file_extract, fixes exit/crash when we can't load the content. (non-compressed corrupt content returns true anyway)
This commit is contained in:
parent
fc1f2cdcf4
commit
1c9a54db27
@ -693,9 +693,8 @@ static bool init_content_file_set_attribs(
|
|||||||
|
|
||||||
#ifdef HAVE_COMPRESSION
|
#ifdef HAVE_COMPRESSION
|
||||||
/* Try to extract all content we're going to load if appropriate. */
|
/* Try to extract all content we're going to load if appropriate. */
|
||||||
if (!init_content_file_extract(temporary_content,
|
init_content_file_extract(temporary_content,
|
||||||
content, special, &attr))
|
content, special, &attr);
|
||||||
return false;
|
|
||||||
#endif
|
#endif
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user