don't dereference pt after realloc - fixes valgrind error

This commit is contained in:
Brian 2007-12-07 13:19:00 -07:00 committed by Ben Skeggs
parent 1eb78225c4
commit f36258d7e1

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);
}