Fixes "Uninitialized scalar variable" defect reported by Coverity.
Signed-off-by: Vinson Lee <v...@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 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev