[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:
Dani Martin
2020-03-30 17:08:01 +02:00
committed by GitHub
parent bba10504e2
commit 1a948849f3
2 changed files with 5 additions and 5 deletions

View File

@@ -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));