Revert previous; I mixed bpp and *bpp when reading ffs_balloc_ufs1().

ffs_balloc() will always allocate a new buffer or leave it as NULL,
so coverity is wrong here, we're not using a freed argument.
This commit is contained in:
bouyer 2006-04-10 22:01:06 +00:00
parent a4181a9049
commit eb7f9aba74
1 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ffs_snapshot.c,v 1.26 2006/04/10 21:50:18 bouyer Exp $ */
/* $NetBSD: ffs_snapshot.c,v 1.27 2006/04/10 22:01:06 bouyer Exp $ */
/*
* Copyright 2000 Marshall Kirk McKusick. All Rights Reserved.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ffs_snapshot.c,v 1.26 2006/04/10 21:50:18 bouyer Exp $");
__KERNEL_RCSID(0, "$NetBSD: ffs_snapshot.c,v 1.27 2006/04/10 22:01:06 bouyer Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ffs.h"
@ -1539,10 +1539,8 @@ retry:
* (default), or does not care about the block,
* it is not needed.
*/
if (lbn >= NDADDR) {
if (lbn >= NDADDR)
brelse(ibp);
ibp = NULL;
}
continue;
}
/*