mirror of
https://github.com/raysan5/raylib.git
synced 2025-11-23 10:36:21 +00:00
[cppcheck] Fix minor warnings in models.c and raudio.c (#1162)
Errores fixes: models.c,2843 Either the condition 'fileData!=NULL' is redundant or there is possible null pointer dereference: fileData. raudio.c,805, 806, 807, 808, %d in format string (no. 2) requires 'int' but the argument type is 'unsigned int'.
This commit is contained in:
@@ -2840,10 +2840,10 @@ static Model LoadOBJ(const char *fileName)
|
||||
unsigned int materialCount = 0;
|
||||
|
||||
char *fileData = LoadFileText(fileName);
|
||||
int dataSize = strlen(fileData);
|
||||
|
||||
if (fileData != NULL)
|
||||
{
|
||||
int dataSize = strlen(fileData);
|
||||
char currentDir[1024] = { 0 };
|
||||
strcpy(currentDir, GetWorkingDirectory());
|
||||
chdir(GetDirectoryPath(fileName));
|
||||
|
||||
Reference in New Issue
Block a user