mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- Import gdtoa fix from NetBSD:
* Change Kmax so we allocate enough freelist entries to handle large field numbers. Reported by Maksymilian Arciemowicz (See also http://securityreason.com/achievement_securityalert/63) SVN r1740 (trunk)
This commit is contained in:
parent
a90bde274e
commit
38d74f57ce
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ extern double rnd_prod(double, double), rnd_quot(double, double);
|
|||
#define FREE_DTOA_LOCK(n) /*nothing*/
|
||||
#endif
|
||||
|
||||
#define Kmax 15
|
||||
#define Kmax (sizeof(size_t) << 3)
|
||||
|
||||
struct
|
||||
Bigint {
|
||||
|
|
Loading…
Reference in a new issue