diff options
| author | Miles Bader | 2007-04-24 21:56:25 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-04-24 21:56:25 +0000 |
| commit | 991a760232de757d71d8dbbed47ee12d81e29d53 (patch) | |
| tree | 2440730c37ae3f167a50f5c3ac5eaeab9b72b7b0 /src/alloc.c | |
| parent | 0bb328f8f6fce06a7fc65670c7d5c011b613e1c5 (diff) | |
| parent | 3851329262d6558d5e1a93157d44777d0a39e38e (diff) | |
| download | emacs-991a760232de757d71d8dbbed47ee12d81e29d53.tar.gz emacs-991a760232de757d71d8dbbed47ee12d81e29d53.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 698-710)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 216)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-196
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 f847b4052b7..6c757567354 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3572,9 +3572,9 @@ mem_insert (start, end, type) | |||
| 3572 | { | 3572 | { |
| 3573 | struct mem_node *c, *parent, *x; | 3573 | struct mem_node *c, *parent, *x; |
| 3574 | 3574 | ||
| 3575 | if (start < min_heap_address) | 3575 | if (min_heap_address == NULL || start < min_heap_address) |
| 3576 | min_heap_address = start; | 3576 | min_heap_address = start; |
| 3577 | if (end > max_heap_address) | 3577 | if (max_heap_address == NULL || end > max_heap_address) |
| 3578 | max_heap_address = end; | 3578 | max_heap_address = end; |
| 3579 | 3579 | ||
| 3580 | /* See where in the tree a node for START belongs. In this | 3580 | /* See where in the tree a node for START belongs. In this |