Fixed crash on Wayland with DRM-backend.

Fixes #319.
Fixes #301.
This commit is contained in:
Ricardo Vieira 2014-06-30 01:59:41 +01:00 committed by Camilla Berglund
parent 3eae79f6e0
commit 704dc3e34d

View File

@ -77,7 +77,7 @@ static void mode(void* data,
int size = monitor->wl.modesSize * 2;
_GLFWvidmodeWayland* modes =
realloc(monitor->wl.modes,
monitor->wl.modesSize * sizeof(_GLFWvidmodeWayland));
size * sizeof(_GLFWvidmodeWayland));
monitor->wl.modes = modes;
monitor->wl.modesSize = size;
}