diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-05-01 18:48:28 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-05-01 20:49:44 +0100 |
commit | 0000792a2006a2c8fde1b54d070490a625fb8435 (patch) | |
tree | 7878e1b708805e3bb3b7f939f7c6e6cf4e4973bc /src/gallium/auxiliary/sct | |
parent | de7277f81a0f4330f11ec429bf46e93d0a748dfe (diff) |
sct: fix bug in remove_context_from_surface
Diffstat (limited to 'src/gallium/auxiliary/sct')
-rw-r--r-- | src/gallium/auxiliary/sct/sct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/sct/sct.c b/src/gallium/auxiliary/sct/sct.c index 97ee5882a1..5e4126e014 100644 --- a/src/gallium/auxiliary/sct/sct.c +++ b/src/gallium/auxiliary/sct/sct.c @@ -209,6 +209,7 @@ remove_context_from_surface(struct sct_surface *si, } else { prev = curr; + next = curr->next; } } } |