From: RALOVICH, Kristóf Date: Sat, 11 Oct 2008 11:09:50 +0000 (+0200) Subject: glx: No need to zero a local variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f31200a33f48445d3c628a46cb790d901391ef0;p=mesa.git glx: No need to zero a local variable. My previous commit e2060348630b59a446bac7f734fdde40033093ab introduced this. --- diff --git a/src/glx/x11/indirect_vertex_array.c b/src/glx/x11/indirect_vertex_array.c index c7a20e2bc56..aec48824f5b 100644 --- a/src/glx/x11/indirect_vertex_array.c +++ b/src/glx/x11/indirect_vertex_array.c @@ -121,7 +121,6 @@ __glXFreeVertexArrayState( __GLXcontext * gc ) arrays->arrays = NULL; } free(arrays); - arrays = NULL; state->array_state = NULL; } }