From: Brian Date: Sat, 20 Oct 2007 21:52:59 +0000 (-0600) Subject: init sp->sbuf_cache to avoid possible segfault X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03145d864ce21094592ae847fbe8da57c419374e;p=mesa.git init sp->sbuf_cache to avoid possible segfault --- diff --git a/src/mesa/pipe/softpipe/sp_context.c b/src/mesa/pipe/softpipe/sp_context.c index 87eaf6fb544..10c53a257bd 100644 --- a/src/mesa/pipe/softpipe/sp_context.c +++ b/src/mesa/pipe/softpipe/sp_context.c @@ -384,6 +384,7 @@ struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys, softpipe->cbuf_cache[i] = sp_create_tile_cache(); softpipe->zbuf_cache = sp_create_tile_cache(); softpipe->sbuf_cache_sep = sp_create_tile_cache(); + softpipe->sbuf_cache = softpipe->sbuf_cache_sep; /* initial value */ return &softpipe->pipe; }