From 07bf2b166bbe9038ab60a0a0ae3b7a3ec2275f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Fri, 7 Jul 2017 10:23:58 +0200 Subject: [PATCH] GLX: Fix segfault when no GLXFBConfigs available Fixes #1040. --- README.md | 2 ++ src/glx_context.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f91c3fc..b7b1353e 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,8 @@ information on what to include when reporting a bug. - [WGL] Added support for `WGL_EXT_colorspace` for OpenGL ES contexts - [WGL] Added support for `WGL_ARB_create_context_no_error` - [GLX] Added support for `GLX_ARB_create_context_no_error` +- [GLX] Bugfix: Context creation could segfault if no GLXFBConfigs were + available (#1040) - [EGL] Added support for `EGL_KHR_get_all_proc_addresses` (#871) - [EGL] Added support for `EGL_KHR_context_flush_control` - [EGL] Bugfix: The test for `EGL_RGB_BUFFER` was invalid diff --git a/src/glx_context.c b/src/glx_context.c index 1d11bfb0..dbac4ea7 100644 --- a/src/glx_context.c +++ b/src/glx_context.c @@ -64,7 +64,7 @@ static GLFWbool chooseGLXFBConfig(const _GLFWfbconfig* desired, GLXFBConfig* res nativeConfigs = glXGetFBConfigs(_glfw.x11.display, _glfw.x11.screen, &nativeCount); - if (!nativeCount) + if (!nativeConfigs || !nativeCount) { _glfwInputError(GLFW_API_UNAVAILABLE, "GLX: No GLXFBConfigs returned"); return GLFW_FALSE;