Fixed glfwSetTime accepting invalid values.

Fixes #436.
This commit is contained in:
Camilla Berglund 2015-02-19 23:49:46 +01:00
parent 11c22d6a17
commit 85de0db05d
3 changed files with 10 additions and 1 deletions

View File

@ -62,6 +62,7 @@ GLFW bundles a number of dependencies in the `deps/` directory.
## Changelog
- Bugfix: `glfwSetTime` silently accepted invalid values
- [Cocoa] Bugfix: `glfwSetWindowSize` did not change the video mode for full
screen windows
- [X11] Added support for Cygwin-X

View File

@ -3136,7 +3136,7 @@ GLFWAPI double glfwGetTime(void);
/*! @brief Sets the GLFW timer.
*
* This function sets the value of the GLFW timer. It then continues to count
* up from that value.
* up from that value. The value must be a positive finite number.
*
* @param[in] time The new value, in seconds.
*

View File

@ -28,6 +28,7 @@
#include "internal.h"
#include <stdlib.h>
#include <float.h>
#if defined(_MSC_VER)
#include <malloc.h>
#endif
@ -591,6 +592,13 @@ GLFWAPI double glfwGetTime(void)
GLFWAPI void glfwSetTime(double time)
{
_GLFW_REQUIRE_INIT();
if (time != time || time - DBL_MAX == time || time < 0.0)
{
_glfwInputError(GLFW_INVALID_VALUE, "Invalid time");
return;
}
_glfwPlatformSetTime(time);
}