summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-09-16 20:40:02 +0200
committerMichal Krol <michal@vmware.com>2009-09-16 20:40:02 +0200
commitde0753e4cb64792d257ad3799932a77321fc3c49 (patch)
treedcf7f4b3a6d87a137bb63d102373719e2e2a45c5
parentc9de313f1b6d0ee8d9304fc3fe11fb84ff494f12 (diff)
glsl/pp: Add more error messages.
-rw-r--r--src/glsl/pp/sl_pp_token.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/pp/sl_pp_token.c b/src/glsl/pp/sl_pp_token.c
index 68c8fbe2ec4..95fe4f7d85e 100644
--- a/src/glsl/pp/sl_pp_token.c
+++ b/src/glsl/pp/sl_pp_token.c
@@ -47,6 +47,7 @@ _tokenise_identifier(struct sl_pp_context *context,
(*input >= '0' && *input <= '9') ||
(*input == '_')) {
if (i >= sizeof(identifier) - 1) {
+ strcpy(context->error_msg, "out of memory");
return -1;
}
identifier[i++] = *input++;
@@ -85,6 +86,7 @@ _tokenise_number(struct sl_pp_context *context,
(*input == '-') ||
(*input == '.')) {
if (i >= sizeof(number) - 1) {
+ strcpy(context->error_msg, "out of memory");
return -1;
}
number[i++] = *input++;
@@ -384,6 +386,7 @@ sl_pp_tokenise(struct sl_pp_context *context,
out = realloc(out, new_max * sizeof(struct sl_pp_token_info));
if (!out) {
+ strcpy(context->error_msg, "out of memory");
return -1;
}
out_max = new_max;