[Mesa-dev] [PATCH] ilo: Initialize read_back in transfer_map_sys.

Vinson Lee vlee at freedesktop.org
Thu May 9 22:42:10 PDT 2013


Fixes "Uninitialized scalar variable" defect reported by Coverity.

Signed-off-by: Vinson Lee <vlee at freedesktop.org>
---
 src/gallium/drivers/ilo/ilo_resource.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/ilo/ilo_resource.c b/src/gallium/drivers/ilo/ilo_resource.c
index c401d9f..41e4ffb 100644
--- a/src/gallium/drivers/ilo/ilo_resource.c
+++ b/src/gallium/drivers/ilo/ilo_resource.c
@@ -340,7 +340,7 @@ transfer_map_sys(struct ilo_context *ilo,
    const size_t stride = util_format_get_stride(res->base.format, box->width);
    const size_t size =
       util_format_get_2d_size(res->base.format, stride, box->height);
-   bool read_back;
+   bool read_back = false;
 
    if (xfer->base.usage & PIPE_TRANSFER_READ) {
       read_back = true;
-- 
1.8.2.1



More information about the mesa-dev mailing list