diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 15:40:19 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 15:40:19 -0400 |
commit | c8ab44d29c3384210cd8f27533abfd0fb2205cc5 (patch) | |
tree | 91e09bbe8841e808492dc8e5671a2622aba5a419 /libdimension/texture.c | |
parent | e0313016725bc9f87243571e75b2e77f1cae265e (diff) | |
download | dimension-c8ab44d29c3384210cd8f27533abfd0fb2205cc5.tar.xz |
Set errno on failures.
Diffstat (limited to 'libdimension/texture.c')
-rw-r--r-- | libdimension/texture.c | 7 |
1 files changed, 7 insertions, 0 deletions
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 <errno.h> #include <stdlib.h> /* 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; } |