浏览代码
[rmodels] Fix crash when NULL is passed to LoadImageFromCgltfImage (#4563)
pull/4565/head
Caleb Heydon
2 周前
committed by
GitHub
找不到此签名对应的密钥
GPG 密钥 ID: B5690EEEBB952194
共有
1 个文件被更改,包括
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) && |
|
|
|