[Mesa-dev] [PATCH] gallium/util: avoid unreferencing random memory on buffer alloc failure

Marek Olšák maraeo at gmail.com
Sun Sep 27 04:23:57 PDT 2015


Reviewed-by: Marek Olšák <marek.olsak at amd.com>

Marek

On Sat, Sep 26, 2015 at 7:46 PM, Ilia Mirkin <imirkin at alum.mit.edu> wrote:
> Found by Coverity
>
> Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
> ---
>  src/gallium/auxiliary/util/u_blitter.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c
> index 2fbf69c..b7b1ece 100644
> --- a/src/gallium/auxiliary/util/u_blitter.c
> +++ b/src/gallium/auxiliary/util/u_blitter.c
> @@ -2065,7 +2065,7 @@ void util_blitter_clear_buffer(struct blitter_context *blitter,
>     struct blitter_context_priv *ctx = (struct blitter_context_priv*)blitter;
>     struct pipe_context *pipe = ctx->base.pipe;
>     struct pipe_vertex_buffer vb = {0};
> -   struct pipe_stream_output_target *so_target;
> +   struct pipe_stream_output_target *so_target = NULL;
>     unsigned offsets[PIPE_MAX_SO_BUFFERS] = {0};
>
>     assert(num_channels >= 1);
> --
> 2.4.9
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list