svga: Silence uninitialized variable warnings.

This commit is contained in:
Vinson Lee
2010-04-10 20:05:10 -07:00
parent a060194519
commit e19ea63b80
+2 -2
View File
@@ -44,8 +44,8 @@ svga_swtnl_draw_range_elements(struct svga_context *svga,
unsigned prim, unsigned start, unsigned count)
{
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;
struct draw_context *draw = svga->swtnl.draw;
unsigned i;
const void *map;