From add3c3eac49b85c067e9039fd96ea98544a8c0be Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Mon, 16 Apr 2007 03:09:50 +0000 Subject: [PATCH] (mem_insert): Set min_heap_address and max_heap_address if they are not yet initialized. --- src/ChangeLog | 5 +++++ src/alloc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index d7ed5465bc5..999f6106e67 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-04-16 YAMAMOTO Mitsuharu + + * alloc.c (mem_insert): Set min_heap_address and max_heap_address + if they are not yet initialized. + 2007-04-15 Chong Yidong * xdisp.c (redisplay_window): When deciding whether or not to 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) { struct mem_node *c, *parent, *x; - if (start < min_heap_address) + if (min_heap_address == NULL || start < min_heap_address) min_heap_address = start; - if (end > max_heap_address) + if (max_heap_address == NULL || end > max_heap_address) max_heap_address = end; /* See where in the tree a node for START belongs. In this -- 2.39.5