소스 검색

Avoid dereferencing a null pointer in the 'LoadMaterials' function in the models module (#1498)

pull/1500/head
Victor Gallet 4 년 전
committed by GitHub
부모
커밋
03278a74bf
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/models.c

+ 4
- 1
src/models.c 파일 보기

@ -948,7 +948,10 @@ Material *LoadMaterials(const char *fileName, int *materialCount)
#endif
// Set materials shader to default (DIFFUSE, SPECULAR, NORMAL)
for (unsigned int i = 0; i < count; i++) materials[i].shader = GetShaderDefault();
if (materials != NULL)
{
for (unsigned int i = 0; i < count; i++) materials[i].shader = GetShaderDefault();
}
*materialCount = count;
return materials;

불러오는 중...
취소
저장