From d2ed91201e1abcc61e30b367c00c6e0f036d9214 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Fri, 3 Apr 2009 14:58:39 +0200 Subject: [PATCH] util/debug: Initialise local variables. --- src/gallium/auxiliary/util/u_debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c index 1b98442..96a2222 100644 --- a/src/gallium/auxiliary/util/u_debug.c +++ b/src/gallium/auxiliary/util/u_debug.c @@ -720,8 +720,8 @@ debug_dump_surface_bmp(const char *filename, struct pipe_surface *surface) { struct pipe_transfer *transfer; - struct pipe_texture *texture; - struct pipe_screen *screen; + struct pipe_texture *texture = surface->texture; + struct pipe_screen *screen = texture->screen; transfer = screen->get_tex_transfer(screen, texture, surface->face, surface->level, surface->zslice, -- 2.7.4