summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nv50
diff options
context:
space:
mode:
authorChristoph Bumiller <[email protected]>2012-05-04 17:40:33 +0200
committerChristoph Bumiller <[email protected]>2012-05-04 18:00:46 +0200
commit9ef549d7cd9aa14ab7c404609f38e2e6195b4335 (patch)
tree6e56d7e8c0efb447fa528035a0fe214ed853d654 /src/gallium/drivers/nv50
parentdffc2fb4e659f41b30e80e23ceb833d53417fb8e (diff)
nv50: fix typo causing NULL-deref in nv50_resource_resolve
Introduced in b328949a37fee7b0f68ed3e068ffc4426c083042.
Diffstat (limited to 'src/gallium/drivers/nv50')
-rw-r--r--src/gallium/drivers/nv50/nv50_surface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_surface.c b/src/gallium/drivers/nv50/nv50_surface.c
index b38e49ffcc1..15c88d5316d 100644
--- a/src/gallium/drivers/nv50/nv50_surface.c
+++ b/src/gallium/drivers/nv50/nv50_surface.c
@@ -711,7 +711,7 @@ nv50_blit_set_src(struct nv50_context *nv50,
templ.swizzle_a = PIPE_SWIZZLE_ALPHA;
nv50->textures[2][0] = nv50_create_sampler_view(pipe, res, &templ);
- nv50->textures[2][0] = NULL;
+ nv50->textures[2][1] = NULL;
nv50_blit_fixup_tic_entry(nv50->textures[2][0]);