Assume that malloc works.

This commit is contained in:
Camilla Berglund
2013-04-17 15:14:42 +02:00
parent 94853a3a05
commit 1fe21b22a3
4 changed files with 1 additions and 37 deletions
-6
View File
@@ -158,12 +158,6 @@ void _glfwInputMonitorChange(void)
_GLFWmonitor* _glfwCreateMonitor(const char* name, int widthMM, int heightMM)
{
_GLFWmonitor* monitor = (_GLFWmonitor*) calloc(1, sizeof(_GLFWmonitor));
if (!monitor)
{
_glfwInputError(GLFW_OUT_OF_MEMORY, NULL);
return NULL;
}
monitor->name = strdup(name);
monitor->widthMM = widthMM;
monitor->heightMM = heightMM;