diff options
author | Vinson Lee <vlee@vmware.com> | 2010-02-15 00:30:31 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-02-15 00:30:31 -0800 |
commit | f0e1499805eb98e4d6dfe4f95f601593c65044d6 (patch) | |
tree | 61383eb6d6329dcd3e41881fbc5fbf93f1e48b04 | |
parent | 6536cdf1836a302d334f7380d1723e8f0bc396be (diff) |
glsl/pp: Add asserts to check for null pointer deferences.
-rw-r--r-- | src/glsl/pp/sl_pp_extension.c | 4 | ||||
-rw-r--r-- | src/glsl/pp/sl_pp_process.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/glsl/pp/sl_pp_extension.c b/src/glsl/pp/sl_pp_extension.c index 2b6cf3c7e4..677fb8a0e6 100644 --- a/src/glsl/pp/sl_pp_extension.c +++ b/src/glsl/pp/sl_pp_extension.c @@ -137,6 +137,7 @@ sl_pp_process_extension(struct sl_pp_context *context, return -1; } out.token = SL_PP_EXTENSION_REQUIRE; + assert(extension); extension->enabled = 1; } else if (behavior == context->dict.enable) { if (out.data.extension == -1) { @@ -148,6 +149,7 @@ sl_pp_process_extension(struct sl_pp_context *context, return -1; } out.token = SL_PP_EXTENSION_ENABLE; + assert(extension); extension->enabled = 1; } else if (behavior == context->dict.warn) { if (out.data.extension == -1) { @@ -155,6 +157,7 @@ sl_pp_process_extension(struct sl_pp_context *context, return 0; } out.token = SL_PP_EXTENSION_WARN; + assert(extension); extension->enabled = 1; } else if (behavior == context->dict.disable) { if (out.data.extension == -1) { @@ -162,6 +165,7 @@ sl_pp_process_extension(struct sl_pp_context *context, return 0; } out.token = SL_PP_EXTENSION_DISABLE; + assert(extension); extension->enabled = 0; } else { strcpy(context->error_msg, "unrecognised behavior name"); diff --git a/src/glsl/pp/sl_pp_process.c b/src/glsl/pp/sl_pp_process.c index f89986dd8e..315ad9bf1c 100644 --- a/src/glsl/pp/sl_pp_process.c +++ b/src/glsl/pp/sl_pp_process.c @@ -87,6 +87,7 @@ sl_pp_process_get(struct sl_pp_context *context, int found_eof = 0; if (context->process_state.out_len) { + assert(context->process_state.out); *output = context->process_state.out[0]; if (context->process_state.out_len > 1) { |