summaryrefslogtreecommitdiffstats
path: root/libdimension/texture.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-04-01 15:40:19 -0400
committerTavian Barnes <tavianator@gmail.com>2010-04-01 15:40:19 -0400
commitc8ab44d29c3384210cd8f27533abfd0fb2205cc5 (patch)
tree91e09bbe8841e808492dc8e5671a2622aba5a419 /libdimension/texture.c
parente0313016725bc9f87243571e75b2e77f1cae265e (diff)
downloaddimension-c8ab44d29c3384210cd8f27533abfd0fb2205cc5.tar.xz
Set errno on failures.
Diffstat (limited to 'libdimension/texture.c')
-rw-r--r--libdimension/texture.c7
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;
}