Initializing the new error variable to zero in syncache_socket()

is not necessary.

Noticed by:	bz
This commit is contained in:
Andre Oppermann 2010-08-15 13:07:08 +00:00
parent f70c72aa0c
commit 0e678ed825
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211332

View File

@ -627,7 +627,7 @@ syncache_socket(struct syncache *sc, struct socket *lso, struct mbuf *m)
struct inpcb *inp = NULL;
struct socket *so;
struct tcpcb *tp;
int error = 0;
int error;
char *s;
INP_INFO_WLOCK_ASSERT(&V_tcbinfo);