[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT PATCH v2 3/5] lib/vfscore: check return value of vfs_write in sys_write



This check has been lost during the porting.

Signed-off-by: Yuri Volchkov <yuri.volchkov@xxxxxxxxx>
---
 lib/vfscore/syscalls.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vfscore/syscalls.c b/lib/vfscore/syscalls.c
index 1301f351..385d90c0 100644
--- a/lib/vfscore/syscalls.c
+++ b/lib/vfscore/syscalls.c
@@ -330,7 +330,7 @@ sys_write(struct vfscore_file *fp, const struct iovec *iov, 
size_t niov,
        uio.uio_offset = offset;
        uio.uio_resid = bytes;
        uio.uio_rw = UIO_WRITE;
-       vfs_write(fp, &uio, (offset == -1) ? 0 : FOF_OFFSET);
+       error = vfs_write(fp, &uio, (offset == -1) ? 0 : FOF_OFFSET);
        *count = bytes - uio.uio_resid;
 
        free(copy_iov);
-- 
2.19.2


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.