summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-12-29 13:38:02 -0800
committerVinson Lee <vlee@vmware.com>2009-12-29 13:38:02 -0800
commit62a0d4ef7fdf4788de84e6645f6f329482033c42 (patch)
tree49557c9c2545e3a67d88b4f9f6fc3d4da2128f82
parent4f481cb87ae948852effde2fa4d997c007afd99c (diff)
mesa: Initialize variable in get_tex_color_index.
-rw-r--r--src/mesa/main/texgetimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c
index 23765d27530..ac467c490a4 100644
--- a/src/mesa/main/texgetimage.c
+++ b/src/mesa/main/texgetimage.c
@@ -103,7 +103,7 @@ get_tex_color_index(GLcontext *ctx, GLuint dimensions,
for (img = 0; img < depth; img++) {
for (row = 0; row < height; row++) {
- GLuint indexRow[MAX_WIDTH];
+ GLuint indexRow[MAX_WIDTH] = { 0 };
void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
width, height, format, type,
img, row, 0);