mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-20 02:08:14 +00:00
[rmodels] Fix crash when NULL is passed to LoadImageFromCgltfImage (#4563)
This commit is contained in:
@@ -5060,6 +5060,8 @@ static Image LoadImageFromCgltfImage(cgltf_image *cgltfImage, const char *texPat
|
|||||||
{
|
{
|
||||||
Image image = { 0 };
|
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 (cgltfImage->uri != NULL) // Check if image data is provided as an uri (base64 or path)
|
||||||
{
|
{
|
||||||
if ((strlen(cgltfImage->uri) > 5) &&
|
if ((strlen(cgltfImage->uri) > 5) &&
|
||||||
|
Reference in New Issue
Block a user