aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2007-04-16 03:09:50 +0000
committerYAMAMOTO Mitsuharu2007-04-16 03:09:50 +0000
commitadd3c3eac49b85c067e9039fd96ea98544a8c0be (patch)
tree880cd8ac06f7d45f0e5aad4d31df0c01aac7a0b8 /src/alloc.c
parent510b69a88647c0c37ffd94d219e38d7e97dd90d4 (diff)
downloademacs-add3c3eac49b85c067e9039fd96ea98544a8c0be.tar.gz
emacs-add3c3eac49b85c067e9039fd96ea98544a8c0be.zip
(mem_insert): Set min_heap_address and max_heap_address
if they are not yet initialized.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
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