don't dereference pt after realloc - fixes valgrind error
authorBrian <brian.paul@tungstengraphics.com>
Fri, 7 Dec 2007 20:19:00 +0000 (13:19 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Fri, 7 Dec 2007 20:19:00 +0000 (13:19 -0700)
src/mesa/pipe/softpipe/sp_texture.c

index e8cdd67..2288c34 100644 (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);
         }