Displaying 3 results from an estimated 3 matches for "mm_minsize".
Did you mean:
mm_memsize
2002 Dec 18
1
[Bug 458] sshd crashes with "fatal: mm_malloc: size too big"
http://bugzilla.mindrot.org/show_bug.cgi?id=458
------- Additional Comments From us- at gmx.de 2002-12-19 03:16 -------
Sorry, typo: The irix version is 6.5.17 not 6.5.18
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2003 Sep 05
3
[Bug 458] sshd crashes with "fatal: mm_malloc: size too big"
...|All
------- Additional Comments From dtucker at zip.com.au 2003-09-05 14:23 -------
I had to reformat Guido's post to read it:
"Same Problem on Solaris 8
Build 32-Bit, gcc 2.95-3
It seems that line 170 in monitor_mm.c is the problem:
if (size > SIZE_T_MAX - MM_MINSIZE + 1)
fatal("mm_malloc: size too big");
size seems to be a different type (uint32)
in defines.h:
#ifndef SIZE_T_MAX
# define SIZE_T_MAX ULONG_MAX
#endif /* SIZE_T_MAX */
#ifndef HAVE_SIZE_T
typedef unsigned int size_t;
# define HAVE_SIZE_T
#endif /* HAVE_SIZE_T */
the line
#define SI...
2002 Jun 25
2
Help wanted: configure test for busted mmap
Linux 2.2 (and probably others) have a deficient mmap which has caused a
number of problems (e.g. bug #285).
A workaround is in development, but it would be helpful to have a
configure test to detect the bad mmaps().
Any takers?
-d