From b6ab27a06daefe58dfb7ec4738f91f9879388083 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 20:13:07 +0800 Subject: [PATCH] --- helper.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helper.c b/helper.c index f6ecc8c..9da3e1d 100644 --- a/helper.c +++ b/helper.c @@ -309,6 +309,11 @@ int addSceneObject(int id) { sceneObjs[nObjects].rotation.parameter = 0; sceneObjs[nObjects].rotation.vect = (vector*)calloc( 3, sizeof(vector[0]) ); + if ( sceneObjs[nObjects].scale == NULL || sceneObjs[nObjects].rotation.vect == NULL ) { + sprintf(stderr, "Could not allocate memory for Scene Object! Shutting down!\n"); + exit(EXIT_FAILURE); + } + nObjects += 1; // New object in scene return nObjects; -- 2.20.1