mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-01 23:20:55 +00:00
parent
6238d61f7e
commit
aa909702c6
@ -469,8 +469,11 @@ class Vfs::Lxip_data_file : public Vfs::Lxip_file
|
|||||||
msghdr msg = create_msghdr(&_parent.remote_addr(),
|
msghdr msg = create_msghdr(&_parent.remote_addr(),
|
||||||
sizeof(sockaddr_in), len, &iov);
|
sizeof(sockaddr_in), len, &iov);
|
||||||
|
|
||||||
_write_err = _sock.ops->sendmsg(&_sock, &msg, len);
|
Lxip::ssize_t res = _sock.ops->sendmsg(&_sock, &msg, len);
|
||||||
return _write_err;
|
|
||||||
|
if (res < 0) _write_err = res;
|
||||||
|
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
Lxip::ssize_t read(Lxip_vfs_file_handle &,
|
Lxip::ssize_t read(Lxip_vfs_file_handle &,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user