From c8ab44d29c3384210cd8f27533abfd0fb2205cc5 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 1 Apr 2010 15:40:19 -0400 Subject: Set errno on failures. --- libdimension/texture.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libdimension/texture.c') diff --git a/libdimension/texture.c b/libdimension/texture.c index 24ff759..28f5033 100644 --- a/libdimension/texture.c +++ b/libdimension/texture.c @@ -19,6 +19,7 @@ *************************************************************************/ #include "dimension.h" +#include #include /* For malloc */ /* Allocate a dummy pigment */ @@ -28,6 +29,8 @@ dmnsn_new_pigment() dmnsn_pigment *pigment = malloc(sizeof(dmnsn_pigment)); if (pigment) { pigment->free_fn = NULL; + } else { + errno = ENOMEM; } return pigment; } @@ -55,6 +58,8 @@ dmnsn_new_finish() finish->ambient_fn = NULL; finish->reflection_fn = NULL; finish->free_fn = NULL; + } else { + errno = ENOMEM; } return finish; } @@ -79,6 +84,8 @@ dmnsn_new_texture() if (texture) { texture->pigment = NULL; texture->finish = NULL; + } else { + errno = ENOMEM; } return texture; } -- cgit v1.2.3