diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5cf22eb62e7..68b490f98b5 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3615,9 +3615,9 @@ mem_insert (start, end, type) | |||
| 3615 | { | 3615 | { |
| 3616 | struct mem_node *c, *parent, *x; | 3616 | struct mem_node *c, *parent, *x; |
| 3617 | 3617 | ||
| 3618 | if (start < min_heap_address) | 3618 | if (min_heap_address == NULL || start < min_heap_address) |
| 3619 | min_heap_address = start; | 3619 | min_heap_address = start; |
| 3620 | if (end > max_heap_address) | 3620 | if (max_heap_address == NULL || end > max_heap_address) |
| 3621 | max_heap_address = end; | 3621 | max_heap_address = end; |
| 3622 | 3622 | ||
| 3623 | /* See where in the tree a node for START belongs. In this | 3623 | /* See where in the tree a node for START belongs. In this |