r18785@catbus: nickm | 2008-03-13 11:07:18 -0400

Backport: Have OpenBSD_malloc_Linux.c use SIZE_T_MAX from torint.h, instead of checking cpu macros.  There is always one more cpu you havent checked for. fixes bug 625.


svn:r14002
This commit is contained in:
Nick Mathewson 2008-03-13 15:07:21 +00:00
parent 9349137f6e
commit fc33b331df
2 changed files with 11 additions and 5 deletions

View File

@ -21,6 +21,8 @@ Changes in version 0.2.0.22-rc - 2008-03-??
(sometimes) to buffer data for the network. Looking at different BIOs
could result in write counts on the order of ULONG_MAX. Fix for bug
614. Bugfix on 0.1.2.x.
- Make --enable-openbsd-malloc work correctly on Linux with alpha CPUs.
Fixes bug 625. Bugfix on 0.2.0.x.
Changes in version 0.2.0.21-rc - 2008-03-02

View File

@ -54,6 +54,7 @@
#include <limits.h>
#include <errno.h>
#include <err.h>
#include "torint.h"
//#include "thread_private.h"
@ -1926,11 +1927,14 @@ realloc(void *ptr, size_t size)
return (r);
}
#if defined(__i386__)||defined(__arm__)||defined(__powerpc__)
#define SIZE_MAX 0xffffffff
#endif
#if defined(__x86_64__)
#define SIZE_MAX 0xffffffffffffffff
#ifndef SIZE_MAX
//#if defined(__i386__)||defined(__arm__)||defined(__powerpc__)
//#define SIZE_MAX 0xffffffff
//#endif
//#if defined(__x86_64__)
//#define SIZE_MAX 0xffffffffffffffff
//#endif
#define SIZE_MAX SIZE_T_MAX
#endif
void *