Fail sharing if either window is context-less

This commit is contained in:
Camilla Berglund 2016-06-22 14:36:46 +02:00
parent b5aae7e901
commit a991c01731

View File

@ -151,7 +151,8 @@ GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height,
if (ctxconfig.share)
{
if (ctxconfig.share->context.client == GLFW_NO_API)
if (ctxconfig.client == GLFW_NO_API ||
ctxconfig.share->context.client == GLFW_NO_API)
{
_glfwInputError(GLFW_NO_WINDOW_CONTEXT, NULL);
return NULL;