diff options
Diffstat (limited to 'src/charset.c')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index 6967b9df611..1209ac6b68d 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -2337,7 +2337,7 @@ syms_of_charset (void) | |||
| 2337 | mmap for larger allocations, and these don't work well across dumped | 2337 | mmap for larger allocations, and these don't work well across dumped |
| 2338 | systems. */ | 2338 | systems. */ |
| 2339 | enum { | 2339 | enum { |
| 2340 | initial_malloc_max = (1 << 16) - 1, | 2340 | initial_malloc_max = (1 << 16) - 1 - XMALLOC_OVERRUN_CHECK_OVERHEAD, |
| 2341 | charset_table_size_init = initial_malloc_max / sizeof (struct charset) | 2341 | charset_table_size_init = initial_malloc_max / sizeof (struct charset) |
| 2342 | }; | 2342 | }; |
| 2343 | 2343 | ||