From: Keith Whitwell Date: Wed, 11 May 2005 15:18:59 +0000 (+0000) Subject: Use _mesa_memset rather than memset X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=49d8cbe8d110e5c0a23300b5b82d110286bc3609;p=mesa.git Use _mesa_memset rather than memset --- diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index 5d2f441ff94..35cea8454a5 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -1130,7 +1130,7 @@ void _tnl_UpdateFixedFunctionProgram( GLcontext *ctx ) return; - memset(&p, 0, sizeof(p)); + _mesa_memset(&p, 0, sizeof(p)); p.ctx = ctx; p.program = (struct vertex_program *)ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0); p.eye_position = undef;