WGL: Fix leak on format attrib query failure

This was found by Coverity Scan.
This commit is contained in:
Camilla Löwy 2019-02-14 20:19:21 +01:00
parent bcd8f9aff2
commit 782f7fe0c7

View File

@ -146,6 +146,8 @@ static int choosePixelFormat(_GLFWwindow* window,
{
_glfwInputErrorWin32(GLFW_PLATFORM_ERROR,
"WGL: Failed to retrieve pixel format attributes");
free(usableConfigs);
return 0;
}