projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b0723c
)
unix: If we happen to find peer NULL when diag dumping, write zero.
author
David S. Miller
<davem@davemloft.net>
Mon, 26 Dec 2011 19:41:55 +0000
(14:41 -0500)
committer
David S. Miller
<davem@davemloft.net>
Mon, 26 Dec 2011 19:41:55 +0000
(14:41 -0500)
Otherwise we leave uninitialized kernel memory in there.
Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/unix/diag.c
patch
|
blob
|
history
diff --git
a/net/unix/diag.c
b/net/unix/diag.c
index
39e44c9
..
c5bdbcb
100644
(file)
--- 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);