diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-03-01 15:58:42 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-03-01 15:58:42 +0000 |
commit | fef6cdae9ebd217843bab2f65c87b59f8a9f782e (patch) | |
tree | 2ab2173145dba63968f1e0bdd221129af3acda83 | |
parent | 8c2dedaa4df2522d6a1725c09e9700c5d753ac93 (diff) |
sna: Chain up CloseScreen
Remember to call into the chained CloseScreen destructors!
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56608
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/sna/sna_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_driver.c b/src/sna/sna_driver.c index bf60fcff..b11575be 100644 --- a/src/sna/sna_driver.c +++ b/src/sna/sna_driver.c @@ -831,7 +831,7 @@ static Bool sna_early_close_screen(CLOSE_SCREEN_ARGS_DECL) xf86_cursors_fini(screen); - return TRUE; + return sna->CloseScreen(CLOSE_SCREEN_ARGS); } static Bool sna_late_close_screen(CLOSE_SCREEN_ARGS_DECL) |