[Mesa-dev] [PATCH] radv: fix wmaybe-uninitialized in radv_meta_fast_clear.c

Samuel Pitoiset samuel.pitoiset at gmail.com
Wed Jul 18 19:13:55 UTC 2018


Reviewed-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>

On 07/18/2018 08:24 PM, Andres Rodriguez wrote:
> Assignment and usage of this variable both happen inside an
> if(rad_image_has_dcc()) {} blocks. It seems gcc plays it safe and
> assumes that both function calls could have different return values.
> 
> But in this case we should be safe.
> ---
>   src/amd/vulkan/radv_meta_fast_clear.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/amd/vulkan/radv_meta_fast_clear.c b/src/amd/vulkan/radv_meta_fast_clear.c
> index 932a6c93aa2..b42a6783fd2 100644
> --- a/src/amd/vulkan/radv_meta_fast_clear.c
> +++ b/src/amd/vulkan/radv_meta_fast_clear.c
> @@ -586,7 +586,7 @@ radv_emit_color_decompress(struct radv_cmd_buffer *cmd_buffer,
>   	VkDevice device_h = radv_device_to_handle(cmd_buffer->device);
>   	VkCommandBuffer cmd_buffer_h = radv_cmd_buffer_to_handle(cmd_buffer);
>   	uint32_t layer_count = radv_get_layerCount(image, subresourceRange);
> -	bool old_predicating;
> +	bool old_predicating = false;
>   	VkPipeline pipeline;
>   
>   	assert(cmd_buffer->queue_family_index == RADV_QUEUE_GENERAL);
> 


More information about the mesa-dev mailing list