From: Patrick Caulfield Date: Tue, 13 Mar 2007 17:08:45 +0000 (+0000) Subject: [DLM] Fix uninitialised variable in receiving X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=89adc934f3f96600e7f31447426c7e99d62c5460;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git [DLM] Fix uninitialised variable in receiving The length of the second element of the kvec array was not initialised before being added to the first one. This could cause invalid lengths to be passed to kernel_recvmsg Signed-Off-By: Patrick Caulfield Signed-off-by: Steven Whitehouse --- diff --git a/fs/dlm/lowcomms-tcp.c b/fs/dlm/lowcomms-tcp.c index 07e0a122c32f..9bfe7fb721e6 100644 --- a/fs/dlm/lowcomms-tcp.c +++ b/fs/dlm/lowcomms-tcp.c @@ -299,6 +299,7 @@ static int receive_from_sock(struct connection *con) */ iov[0].iov_len = con->cb.base - cbuf_data(&con->cb); iov[0].iov_base = page_address(con->rx_page) + cbuf_data(&con->cb); + iov[1].iov_len = 0; nvec = 1; /*