Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/subr_pool.c,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- src/sys/kern/subr_pool.c 2002/11/09 20:12:55 1.82 +++ src/sys/kern/subr_pool.c 2002/11/24 11:37:57 1.83 @@ -1,4 +1,4 @@ -/* $NetBSD: subr_pool.c,v 1.82 2002/11/09 20:12:55 thorpej Exp $ */ +/* $NetBSD: subr_pool.c,v 1.83 2002/11/24 11:37:57 scw Exp $ */ /*- * Copyright (c) 1997, 1999, 2000 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.82 2002/11/09 20:12:55 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.83 2002/11/24 11:37:57 scw Exp $"); #include "opt_pool.h" #include "opt_poollog.h" @@ -1037,7 +1037,7 @@ pool_put(struct pool *pp, void *v) int pool_prime(struct pool *pp, int n) { - struct pool_item_header *ph; + struct pool_item_header *ph = NULL; caddr_t cp; int newpages; @@ -1158,7 +1158,7 @@ pool_prime_page(struct pool *pp, caddr_t static int pool_catchup(struct pool *pp) { - struct pool_item_header *ph; + struct pool_item_header *ph = NULL; caddr_t cp; int error = 0;