summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/drivers/glide/fxddtex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c
index 419c9d17c6..f0bb74f82b 100644
--- a/src/mesa/drivers/glide/fxddtex.c
+++ b/src/mesa/drivers/glide/fxddtex.c
@@ -60,12 +60,12 @@ _mesa_halve2x2_teximage2d ( GLcontext *ctx,
GLint dstWidth = srcWidth / 2;
GLint dstHeight = srcHeight / 2;
GLint srcRowStride = srcWidth * bytesPerPixel;
- GLubyte *src = srcImage;
+ GLubyte *src = (GLubyte *)srcImage;
GLubyte *dst = dstImage;
GLuint bpt = 0;
- GLubyte *_s;
- GLubyte *_d;
+ GLubyte *_s = NULL;
+ GLubyte *_d = NULL;
GLenum _t;
if (texImage->TexFormat->MesaFormat == MESA_FORMAT_RGB565) {