소스 검색

[rmodels] Fix crash when NULL is passed to LoadImageFromCgltfImage (#4563)

pull/4565/head
Caleb Heydon 2 주 전
committed by GitHub
부모
커밋
f3f5f38c0f
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/rmodels.c

+ 2
- 0
src/rmodels.c 파일 보기

@ -5060,6 +5060,8 @@ static Image LoadImageFromCgltfImage(cgltf_image *cgltfImage, const char *texPat
{
Image image = { 0 };
if (cgltfImage == NULL) return image;
if (cgltfImage->uri != NULL) // Check if image data is provided as an uri (base64 or path)
{
if ((strlen(cgltfImage->uri) > 5) &&

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