Bail out if the fill function failed.
This commit is contained in:
parent
2002923bda
commit
169656d24e
@ -233,6 +233,11 @@ pfs_read(struct vop_read_args *va)
|
||||
|
||||
if (proc != NULL)
|
||||
PRELE(proc);
|
||||
|
||||
if (error) {
|
||||
sbuf_delete(sb);
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* XXX we should possibly detect and handle overflows */
|
||||
sbuf_finish(sb);
|
||||
@ -391,6 +396,11 @@ pfs_readlink(struct vop_readlink_args *va)
|
||||
if (proc != NULL)
|
||||
PRELE(proc);
|
||||
|
||||
if (error) {
|
||||
sbuf_delete(&sb);
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* XXX we should detect and handle overflows */
|
||||
sbuf_finish(&sb);
|
||||
ps = sbuf_data(&sb) + uio->uio_offset;
|
||||
|
Loading…
x
Reference in New Issue
Block a user