From: Marek Olšák Date: Wed, 27 Apr 2011 11:04:21 +0000 (+0200) Subject: st/mesa: fix warning: ‘user_memory’ may be used uninitialized in this function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;ds=sidebyside;h=e031bed122a8902808b197549e7952cde10d310c;p=mesa.git st/mesa: fix warning: ‘user_memory’ may be used uninitialized in this function It's initialized later in a conditional the condition of which is always true the first time it's evaluated. --- diff --git a/src/mesa/state_tracker/st_draw.c b/src/mesa/state_tracker/st_draw.c index d27043ec296..46a4f9cf8c5 100644 --- a/src/mesa/state_tracker/st_draw.c +++ b/src/mesa/state_tracker/st_draw.c @@ -247,7 +247,7 @@ is_interleaved_arrays(const struct st_vertex_program *vp, const struct gl_buffer_object *firstBufObj = NULL; GLint firstStride = -1; const GLubyte *client_addr = NULL; - GLboolean user_memory; + GLboolean user_memory = GL_FALSE; for (attr = 0; attr < vpv->num_inputs; attr++) { const GLuint mesaAttr = vp->index_to_input[attr];