diff options
author | Brian <brian@yutani.localnet.net> | 2007-03-09 16:53:44 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-03-09 16:53:44 -0700 |
commit | ff95925e70877b9cfe65f66c21ea5ee9ae117ca4 (patch) | |
tree | 871c4131702aba695e017e46266dd93254f03c13 /src/mesa/shader/slang | |
parent | b9ea9361500979b318574ac69ce656ea3af6a197 (diff) |
add NULL ptr check
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r-- | src/mesa/shader/slang/slang_codegen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_codegen.c b/src/mesa/shader/slang/slang_codegen.c index 6587629ebb..64bb9141bc 100644 --- a/src/mesa/shader/slang/slang_codegen.c +++ b/src/mesa/shader/slang/slang_codegen.c @@ -1167,6 +1167,8 @@ _slang_gen_asm(slang_assemble_ctx *A, slang_operation *oper, kids[0] = kids[1] = kids[2] = NULL; for (j = 0; j < info->NumParams; j++) { kids[j] = _slang_gen_operation(A, &oper->children[firstOperand + j]); + if (!kids[j]) + return NULL; } n = new_node3(info->Opcode, kids[0], kids[1], kids[2]); |