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