diff options
author | Marek Olšák <[email protected]> | 2010-06-21 23:45:53 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-06-21 23:46:38 +0200 |
commit | 59df6725afd9c0d50cd962dd01db868be13284db (patch) | |
tree | 96990023f13a90e2f5c4caf9cdfe8834afbd4708 | |
parent | 197636814e4e523b98d3e25d918d589ef61b8aca (diff) |
r300g: fix crash when destroying the context on r3xx-r4xx
FDO bug #28652,
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index ee86f8230fb..16a75aa612b 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -45,7 +45,7 @@ static void r300_destroy_context(struct pipe_context* context) if (r300->texkill_sampler) { pipe_sampler_view_reference( - (struct pipe_sampler_view**)r300->texkill_sampler, + (struct pipe_sampler_view**)&r300->texkill_sampler, NULL); } |