diff options
author | Roland Scheidegger <rscheidegger@gmx.ch> | 2006-11-29 22:16:16 +0000 |
---|---|---|
committer | Roland Scheidegger <rscheidegger@gmx.ch> | 2006-11-29 22:16:16 +0000 |
commit | e731d8aafa98bbf9d30f83e65f28b7718be55834 (patch) | |
tree | ac86d366c925a076a5256bc62945a8fb36abd226 | |
parent | ac8620f37531a2096841678723d993f3f085cbdc (diff) |
check for target instead of program->Target in _tnl_program_string, avoids segfault if program is NULL
-rw-r--r-- | src/mesa/tnl/t_vb_arbprogram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_arbprogram.c b/src/mesa/tnl/t_vb_arbprogram.c index 71fb45dd95..bf4c1d5223 100644 --- a/src/mesa/tnl/t_vb_arbprogram.c +++ b/src/mesa/tnl/t_vb_arbprogram.c @@ -1529,7 +1529,7 @@ const struct tnl_pipeline_stage _tnl_arb_vertex_program_stage = void _tnl_program_string(GLcontext *ctx, GLenum target, struct gl_program *program) { - if (program->Target == GL_VERTEX_PROGRAM_ARB) { + if (target == GL_VERTEX_PROGRAM_ARB) { /* free any existing tnl data hanging off the program */ struct gl_vertex_program *vprog = (struct gl_vertex_program *) program; if (vprog->TnlData) { |