From 03278a74bfb749a451c94de1c7c912c8a858ca41 Mon Sep 17 00:00:00 2001 From: Victor Gallet Date: Thu, 31 Dec 2020 13:28:53 +0100 Subject: [PATCH] Avoid dereferencing a null pointer in the 'LoadMaterials' function in the models module (#1498) --- src/models.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/models.c b/src/models.c index 2e72b64eb..153e942b5 100644 --- a/src/models.c +++ b/src/models.c @@ -948,7 +948,10 @@ Material *LoadMaterials(const char *fileName, int *materialCount) #endif // Set materials shader to default (DIFFUSE, SPECULAR, NORMAL) - for (unsigned int i = 0; i < count; i++) materials[i].shader = GetShaderDefault(); + if (materials != NULL) + { + for (unsigned int i = 0; i < count; i++) materials[i].shader = GetShaderDefault(); + } *materialCount = count; return materials;