- 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:
Randy Heit 2009-07-31 23:05:20 +00:00
parent a90bde274e
commit 38d74f57ce
1 changed files with 1 additions and 1 deletions

View File

@ -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 {