Silence a bogus "may be used uninitialised" warning.


 25-akpm/mm/memory.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN mm/memory.c~unmap_vmas-warning-fix mm/memory.c
--- 25/mm/memory.c~unmap_vmas-warning-fix	Thu Oct  9 01:50:13 2003
+++ 25-akpm/mm/memory.c	Thu Oct  9 01:50:13 2003
@@ -525,7 +525,7 @@ int unmap_vmas(struct mmu_gather **tlbp,
 		unsigned long end_addr, unsigned long *nr_accounted)
 {
 	unsigned long zap_bytes = ZAP_BLOCK_SIZE;
-	unsigned long tlb_start;	/* For tlb_finish_mmu */
+	unsigned long tlb_start = 0;	/* For tlb_finish_mmu */
 	int tlb_start_valid = 0;
 	int ret = 0;
 

_