don't alloc region in xmesa_surface_alloc(), fixes a mem leak

This commit is contained in:
Brian 2007-10-19 12:42:05 -06:00
parent 257f0da6a2
commit ffd37b1fda

View file

@ -284,6 +284,7 @@ xmesa_surface_alloc(struct pipe_context *pipe, GLuint pipeFormat)
{
struct xmesa_surface *xms = CALLOC_STRUCT(xmesa_surface);
assert(pipe);
assert(pipeFormat);
xms->surface.surface.format = pipeFormat;
@ -293,9 +294,6 @@ xmesa_surface_alloc(struct pipe_context *pipe, GLuint pipeFormat)
*/
softpipe_init_surface_funcs(&xms->surface);
assert(pipe);
xms->surface.surface.region = pipe->region_alloc(pipe, 1, 1, 1, 0x0);
return &xms->surface.surface;
}