configure.ac | 2 +- src/via_driver.c | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-)
New commits: commit 63bb8aa027ab3ffd1997347f15fba04b0f55382a Author: Kevin Brace <kevinbr...@gmx.com> Date: Wed Sep 6 15:49:26 2017 -0700 Version bumped to 0.6.160 Another small fix meant for drm-openchrome was committed. Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/configure.ac b/configure.ac index 3dbaf35..f749d37 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ(2.57) AC_INIT([xf86-video-openchrome], - [0.6.159], + [0.6.160], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome], [xf86-video-openchrome]) commit 22768d587b560fe64da0eb9aadf96c2596819520 Author: Kevin Brace <kevinbr...@gmx.com> Date: Wed Sep 6 15:36:41 2017 -0700 Interim fix for VIACloseScreen() when drm-openchrome is in use It was leading to a crash when shutting down the X Server. Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/src/via_driver.c b/src/via_driver.c index ce77910..2771fa1 100644 --- a/src/via_driver.c +++ b/src/via_driver.c @@ -1670,7 +1670,9 @@ VIACloseScreen(CLOSE_SCREEN_ARGS_DECL) if (pVia->directRenderingType != DRI_2) viaExitVideo(pScrn); - viaExitAccel(pScreen); + if (!pVia->NoAccel) { + viaExitAccel(pScreen); + } if (pVia->ShadowPtr) { shadowRemove(pScreen, pScreen->GetScreenPixmap(pScreen)); _______________________________________________ Openchrome-devel mailing list Openchrome-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/openchrome-devel