summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-05-10 18:08:25 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-05-10 18:08:25 +0000
commitc5f5055097e8fa23e8ba8bd39b0d9b747148c996 (patch)
tree8e516b484125601be51979e455d1a5c1f2f36c4b /src/mesa
parentdbeea25bb834479a29712100888c862348112018 (diff)
Fix some valgrind complaints
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/shader/program.c2
-rw-r--r--src/mesa/tnl/t_save_api.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c
index bc8bc1bcfa..a375805052 100644
--- a/src/mesa/shader/program.c
+++ b/src/mesa/shader/program.c
@@ -355,8 +355,6 @@ _mesa_free_parameter_list(struct program_parameter_list *paramList)
_mesa_free(paramList->Parameters);
_mesa_free(paramList->ParameterValues);
_mesa_free(paramList);
- paramList->Parameters = NULL;
- paramList->ParameterValues = NULL;
}
diff --git a/src/mesa/tnl/t_save_api.c b/src/mesa/tnl/t_save_api.c
index 67fee8e29a..dcc8850bec 100644
--- a/src/mesa/tnl/t_save_api.c
+++ b/src/mesa/tnl/t_save_api.c
@@ -242,13 +242,15 @@ static void _save_compile_vertex_list( GLcontext *ctx )
_mesa_memcpy(node->attrsz, tnl->save.attrsz, sizeof(node->attrsz));
node->vertex_size = tnl->save.vertex_size;
node->buffer = tnl->save.buffer;
- node->wrap_count = tnl->save.copied.nr;
node->count = tnl->save.initial_counter - tnl->save.counter;
+ node->wrap_count = tnl->save.copied.nr;
+ node->have_materials = tnl->save.have_materials;
+ node->dangling_attr_ref = tnl->save.dangling_attr_ref;
+ node->normal_lengths = NULL;
node->prim = tnl->save.prim;
node->prim_count = tnl->save.prim_count;
node->vertex_store = tnl->save.vertex_store;
node->prim_store = tnl->save.prim_store;
- node->normal_lengths = NULL;
node->vertex_store->refcount++;
node->prim_store->refcount++;