Fix: Implicit Conversion Error

pull/5306/head
Pavel Lukandiy 2023-10-11 11:44:22 +07:00 committed by Kim Kulling
parent c1deb808fa
commit a7cfa3264a
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ void IFCImporter::InternReadFile(const std::string &pFile, aiScene *pScene, IOSy
size_t total = 0;
int read = 0;
do {
int bufferSize = fileInfo.uncompressed_size < INT16_MAX ? fileInfo.uncompressed_size : INT16_MAX;
unsigned bufferSize = fileInfo.uncompressed_size < INT16_MAX ? static_cast<unsigned>(fileInfo.uncompressed_size) : INT16_MAX;
void *buffer = malloc(bufferSize);
read = unzReadCurrentFile(zip, buffer, bufferSize);
if (read > 0) {