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:
Brad Parker 2016-10-03 22:23:39 -04:00
parent fc1f2cdcf4
commit 1c9a54db27

View File

@ -693,9 +693,8 @@ static bool init_content_file_set_attribs(
#ifdef HAVE_COMPRESSION
/* Try to extract all content we're going to load if appropriate. */
if (!init_content_file_extract(temporary_content,
content, special, &attr))
return false;
init_content_file_extract(temporary_content,
content, special, &attr);
#endif
return true;
}