diff options
author | Vinson Lee <vlee@vmware.com> | 2010-06-10 00:33:25 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-06-10 00:33:25 -0700 |
commit | 9be40de0871980ca541f0682aef6c1c507c1610f (patch) | |
tree | bc0d3bcb90170cd3c58918eb1b81b88059ff396a | |
parent | 638342858894293246400d95a90d153c7f66719a (diff) |
r300g: Fix memory leak on error path.
-rw-r--r-- | src/gallium/drivers/r300/r300_transfer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_transfer.c b/src/gallium/drivers/r300/r300_transfer.c index f0b5e9659d..4f37fabb28 100644 --- a/src/gallium/drivers/r300/r300_transfer.c +++ b/src/gallium/drivers/r300/r300_transfer.c @@ -181,6 +181,7 @@ r300_texture_get_transfer(struct pipe_context *ctx, /* Otherwise, go to hell. */ fprintf(stderr, "r300: Failed to create a transfer object, praise.\n"); + FREE(trans); return NULL; } } |