Update external libraries and fix C++ on older versions of GCC.

This commit is contained in:
David Reid
2018-08-05 12:16:56 +10:00
parent 88a694afe5
commit 8d15aa278c
4 changed files with 60 additions and 32 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ void* open_and_read_file_data(const char* filePath, size_t* pSizeOut)
mal_uint64 fileSize = ftell(pFile);
fseek(pFile, 0, SEEK_SET);
if (fileSize > SIZE_MAX) {
if (fileSize > MAL_SIZE_MAX) {
fclose(pFile);
return NULL;
}