Bail out if the fill function failed.

This commit is contained in:
des 2001-06-10 21:39:01 +00:00
parent 2002923bda
commit 169656d24e

View File

@ -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;