From: Vinson Lee Date: Sun, 11 Apr 2010 03:28:24 +0000 (-0700) Subject: nvfx: Silence uninitialized variable warnings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ac18b8c44c1219f0f5162307477a615a13360bd6;p=mesa.git nvfx: Silence uninitialized variable warnings. --- diff --git a/src/gallium/drivers/nvfx/nvfx_draw.c b/src/gallium/drivers/nvfx/nvfx_draw.c index fc6f8d02721..1d791c155bb 100644 --- a/src/gallium/drivers/nvfx/nvfx_draw.c +++ b/src/gallium/drivers/nvfx/nvfx_draw.c @@ -239,8 +239,8 @@ nvfx_draw_elements_swtnl(struct pipe_context *pipe, { struct nvfx_context *nvfx = nvfx_context(pipe); struct pipe_transfer *vb_transfer[PIPE_MAX_ATTRIBS]; - struct pipe_transfer *ib_transfer; - struct pipe_transfer *cb_transfer; + struct pipe_transfer *ib_transfer = NULL; + struct pipe_transfer *cb_transfer = NULL; unsigned i; void *map;