diff options
Diffstat (limited to 'src/gmalloc.c')
| -rw-r--r-- | src/gmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c index bd8fe344cbd..1cf9a8ee9b5 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c | |||
| @@ -911,7 +911,7 @@ _malloc_internal_nolock (size) | |||
| 911 | final free block; if so we don't need to get as much. */ | 911 | final free block; if so we don't need to get as much. */ |
| 912 | if (_heaplimit != 0 && block + lastblocks == _heaplimit && | 912 | if (_heaplimit != 0 && block + lastblocks == _heaplimit && |
| 913 | /* We can't do this if we will have to make the heap info | 913 | /* We can't do this if we will have to make the heap info |
| 914 | table bigger to accomodate the new space. */ | 914 | table bigger to accommodate the new space. */ |
| 915 | block + wantblocks <= heapsize && | 915 | block + wantblocks <= heapsize && |
| 916 | get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, | 916 | get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, |
| 917 | ADDRESS (block + lastblocks))) | 917 | ADDRESS (block + lastblocks))) |