From: David S. Miller Date: Mon, 26 Dec 2011 19:41:55 +0000 (-0500) Subject: unix: If we happen to find peer NULL when diag dumping, write zero. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e09e9d189bc2d31dc365a3d846a09086317350b6;p=mv-sheeva.git unix: If we happen to find peer NULL when diag dumping, write zero. Otherwise we leave uninitialized kernel memory in there. Reported-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/unix/diag.c b/net/unix/diag.c index 39e44c98176..c5bdbcb1c30 100644 --- a/net/unix/diag.c +++ b/net/unix/diag.c @@ -86,8 +86,7 @@ static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb) */ unix_state_lock_nested(req); peer = unix_sk(req)->peer; - if (peer) - buf[i++] = sock_i_ino(peer); + buf[i++] = (peer ? sock_i_ino(peer) : 0); unix_state_unlock(req); } spin_unlock(&sk->sk_receive_queue.lock);