From: Vinson Lee Date: Fri, 8 Oct 2010 21:08:50 +0000 (-0700) Subject: r600g: Silence uninitialized variable warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=131485efae3e919c2ba619eb087931f402c219f1;p=mesa.git r600g: Silence uninitialized variable warning. --- diff --git a/src/gallium/winsys/r600/drm/r600_hw_context.c b/src/gallium/winsys/r600/drm/r600_hw_context.c index 86bddccbbbb..fa005379b53 100644 --- a/src/gallium/winsys/r600/drm/r600_hw_context.c +++ b/src/gallium/winsys/r600/drm/r600_hw_context.c @@ -67,7 +67,8 @@ static void INLINE r600_context_update_fenced_list(struct r600_context *ctx) static void INLINE r600_context_fence_wraparound(struct r600_context *ctx, unsigned fence) { - struct radeon_bo *bo, *tmp; + struct radeon_bo *bo = NULL; + struct radeon_bo *tmp; LIST_FOR_EACH_ENTRY_SAFE(bo, tmp, &ctx->fenced_bo, fencedlist) { if (bo->fence <= *ctx->cfence) {