Re: [real fix] Re: [patch] fix for cc1 Out of memory [Re:

Mike Galbraith (mikeg@weiden.de)
Tue, 13 Apr 1999 06:21:55 +0200 (CEST)


On Tue, 13 Apr 1999, Andrea Arcangeli wrote:

> Index: mmap.c
> ===================================================================
> RCS file: /var/cvs/linux/mm/mmap.c,v
> retrieving revision 1.1.2.15
> diff -u -r1.1.2.15 mmap.c
> --- mmap.c 1999/04/09 16:53:46 1.1.2.15
> +++ linux/mm/mmap.c 1999/04/13 01:29:08
> @@ -565,8 +565,8 @@
> if (!prev)
> goto no_mmaps;
> if (prev->vm_end > start) {
> - if (last > prev->vm_end)
> - last = prev->vm_end;
> + if (last > prev->vm_start)
> + last = prev->vm_start;
> goto no_mmaps;
> }
> }

Thanks! Trying to pin this sucker down.. wasn't working ;-)

-Mike

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/