1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Fixed invalid pointer when Xrandr is unavailable.

Fixes #497.
Closes #498.
This commit is contained in:
Eric Larson 2015-04-13 13:37:15 -07:00 committed by Camilla Berglund
parent b415b9aacf
commit ad1739c63f

View File

@ -201,7 +201,7 @@ void _glfwRestoreVideoMode(_GLFWmonitor* monitor)
_GLFWmonitor** _glfwPlatformGetMonitors(int* count)
{
int i, j, k, found = 0;
_GLFWmonitor** monitors;
_GLFWmonitor** monitors = NULL;
*count = 0;