WGL: Fix leak on format attrib query failure

This was found by Coverity Scan.
master
Camilla Löwy ago%!(EXTRA string=6 years)
parent bcd8f9aff2
commit 782f7fe0c7
  1. 2
      src/wgl_context.c

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

Loading…
Cancel
Save