mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
On error, bread(9) zeroes buffer pointer, do not dereference it.
See r294954 for the bread(9) change and r297401 for similar cd9660 fix. Reported and tested by: Joshua Kinard <kumba@gentoo.org> PR: 214705 Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
9170c18bb9
commit
1fa81dab7d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=308995
@ -487,11 +487,11 @@ udf_read(struct vop_read_args *ap)
|
||||
} else {
|
||||
error = bread(vp, lbn, size, NOCRED, &bp);
|
||||
}
|
||||
n = min(n, size - bp->b_resid);
|
||||
if (error) {
|
||||
if (error != 0) {
|
||||
brelse(bp);
|
||||
return (error);
|
||||
}
|
||||
n = min(n, size - bp->b_resid);
|
||||
|
||||
error = uiomove(bp->b_data + on, (int)n, uio);
|
||||
brelse(bp);
|
||||
|
Loading…
Reference in New Issue
Block a user