don't dereference pt after realloc - fixes valgrind error

This commit is contained in:
Brian
2007-12-07 13:19:00 -07:00
parent e6b5cf342e
commit dd87c43a44

View File

@@ -386,7 +386,7 @@ softpipe_texture_create(struct pipe_context *pipe, struct pipe_texture **pt)
if (spt->buffer) {
pipe->winsys->buffer_data(pipe->winsys, spt->buffer,
spt->pitch * (*pt)->cpp *
spt->pitch * spt->base.cpp *
spt->total_height, NULL,
PIPE_BUFFER_USAGE_PIXEL);
}