mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 18:48:28 +02:00
Fix some valgrind complaints
This commit is contained in:
parent
dbeea25bb8
commit
c5f5055097
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue