Переглянути джерело

[rmodels] Fixed null pointer dereference in LoadGLTF (#4564)

* [rmodels] Fixed null pointer dereference in LoadGLTF

* [rmodels] Add parenthesis around conditionals in LoadGLTF
pull/4574/head
Caleb Heydon 2 тижднів тому
committed by GitHub
джерело
коміт
5feccb1bab
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: B5690EEEBB952194
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      src/rmodels.c

+ 1
- 1
src/rmodels.c Переглянути файл

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

Завантаження…
Відмінити
Зберегти