diff --git a/src/egl_context.c b/src/egl_context.c index 64dcdd6f..87b2cf35 100644 --- a/src/egl_context.c +++ b/src/egl_context.c @@ -312,7 +312,7 @@ static GLFWglproc getProcAddressEGL(const char* procname) { _GLFWwindow* window = _glfwPlatformGetTls(&_glfw.contextSlot); - if (window->context.egl.client) + if (window && window->context.egl.client) { GLFWglproc proc = (GLFWglproc) _glfwPlatformGetModuleSymbol(window->context.egl.client, procname); diff --git a/src/glx_context.c b/src/glx_context.c index 4406dfd3..cdf10cfb 100644 --- a/src/glx_context.c +++ b/src/glx_context.c @@ -191,13 +191,14 @@ static void swapBuffersGLX(_GLFWwindow* window) static void swapIntervalGLX(int interval) { - _GLFWwindow* window = _glfwPlatformGetTls(&_glfw.contextSlot); - if (_glfw.glx.EXT_swap_control) { - _glfw.glx.SwapIntervalEXT(_glfw.x11.display, - window->context.glx.window, - interval); + _GLFWwindow *window = _glfwPlatformGetTls(&_glfw.contextSlot); + if (window) { + _glfw.glx.SwapIntervalEXT(_glfw.x11.display, + window->context.glx.window, + interval); + } } else if (_glfw.glx.MESA_swap_control) _glfw.glx.SwapIntervalMESA(interval);