diff options
author | Chia-I Wu <[email protected]> | 2011-07-01 18:13:38 +0900 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-07-01 18:28:46 +0900 |
commit | bf04d9eebfd117ad3b9c095b990183614d4f5f09 (patch) | |
tree | b9164938e677c4274f79f7fa872af63209d5ab95 /src/gallium | |
parent | c0b0e71148726d5b7f276b10bef981034660427f (diff) |
st/egl: fix a typo
Wrong goto labels.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/egl/common/native_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/egl/common/native_helper.c b/src/gallium/state_trackers/egl/common/native_helper.c index 6f2097c61a6..cca1e1c6295 100644 --- a/src/gallium/state_trackers/egl/common/native_helper.c +++ b/src/gallium/state_trackers/egl/common/native_helper.c @@ -282,9 +282,9 @@ resource_surface_copy_swap(struct resource_surface *rsurf, btex, 0, &src_box); ret = TRUE; - out_no_ftex: - pipe_resource_reference(&btex, NULL); out_no_btex: + pipe_resource_reference(&btex, NULL); + out_no_ftex: pipe_resource_reference(&ftex, NULL); return ret; |