diff options
author | Vinson Lee <[email protected]> | 2010-08-21 22:09:47 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-21 22:15:22 -0700 |
commit | 68d34f2979f4f4e0dfa5695742bb8ccdb6feb54a (patch) | |
tree | 69f68eec977139c384e4b6b6e4c5e05134c083db /src/gallium/drivers/nvfx/nv04_2d.c | |
parent | 4a06525737c17126243a48741c87298ad1ffd076 (diff) |
nvfx: Silence uninitialized variable warnings.
Silence the following i686-apple-darwin10-gcc-4.2.1 warnings.
nv04_2d.c: In function 'nv04_region_copy_cpu':
nv04_2d.c:560: warning: 'dswy' may be used uninitialized in this function
nv04_2d.c:559: warning: 'dswx' may be used uninitialized in this function
nv04_2d.c:562: warning: 'sswy' may be used uninitialized in this function
nv04_2d.c:561: warning: 'sswx' may be used uninitialized in this function
Diffstat (limited to 'src/gallium/drivers/nvfx/nv04_2d.c')
-rw-r--r-- | src/gallium/drivers/nvfx/nv04_2d.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/nvfx/nv04_2d.c b/src/gallium/drivers/nvfx/nv04_2d.c index 46d5f5c08d4..c7d53a786f2 100644 --- a/src/gallium/drivers/nvfx/nv04_2d.c +++ b/src/gallium/drivers/nvfx/nv04_2d.c @@ -556,10 +556,10 @@ simple: } else { - int* dswx; - int* dswy; - int* sswx; - int* sswy; + int* dswx = NULL; + int* dswy = NULL; + int* sswx = NULL; + int* sswy = NULL; int dir; if(!dst->pitch) |