소스 검색

[rmodels] Fixed null pointer dereference in LoadGLTF

pull/4564/head
Caleb Heydon 4 달 전
부모
커밋
390ce391cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c 파일 보기

@ -5664,7 +5664,7 @@ static Model LoadGLTF(const char *fileName)
}
// Load primitive indices data (if provided)
if (mesh->primitives[p].indices != NULL)
if (mesh->primitives[p].indices != NULL && mesh->primitives[p].indices->buffer_view != NULL)
{
cgltf_accessor *attribute = mesh->primitives[p].indices;

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