mesa: glsl: enable bzero() in slang_typeinfo_construct()

This commit is contained in:
Brian Paul 2008-08-12 11:47:46 -06:00
parent ee7296d319
commit 8f243d6593

View file

@ -273,7 +273,7 @@ slang_type_specifier_compatible(const slang_type_specifier * x,
GLboolean
slang_typeinfo_construct(slang_typeinfo * ti)
{
/*_mesa_bzero(ti, sizeof(*ti));*/
_mesa_bzero(ti, sizeof(*ti));
slang_type_specifier_ctr(&ti->spec);
ti->array_len = 0;
return GL_TRUE;