From: Brian Paul Date: Thu, 17 Feb 2011 00:10:35 +0000 (-0700) Subject: gallium/util: init key with memset() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d236d71c84075d79349218be7b427366bc7406b;p=mesa.git gallium/util: init key with memset() To silence missing initializers warning. --- diff --git a/src/gallium/auxiliary/util/u_vbuf_mgr.c b/src/gallium/auxiliary/util/u_vbuf_mgr.c index 5f5a554e331..7add88e529d 100644 --- a/src/gallium/auxiliary/util/u_vbuf_mgr.c +++ b/src/gallium/auxiliary/util/u_vbuf_mgr.c @@ -154,7 +154,7 @@ static void u_vbuf_translate_begin(struct u_vbuf_mgr_priv *mgr, int min_index, int max_index, boolean *upload_flushed) { - struct translate_key key = {0}; + struct translate_key key; struct translate_element *te; unsigned tr_elem_index[PIPE_MAX_ATTRIBS] = {0}; struct translate *tr; @@ -165,6 +165,8 @@ static void u_vbuf_translate_begin(struct u_vbuf_mgr_priv *mgr, unsigned i, num_verts, out_offset; struct pipe_vertex_element new_velems[PIPE_MAX_ATTRIBS]; + memset(&key, 0, sizeof(key)); + /* Initialize the translate key, i.e. the recipe how vertices should be * translated. */ for (i = 0; i < mgr->ve->count; i++) {