Revert r306337. dhw@ reproted a panic which seems related to this and bde@ has

raised some issues.
This commit is contained in:
Hiren Panchasara 2016-09-26 15:45:30 +00:00
parent ed8f18ded4
commit 7c9a4d09d6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=306348

View File

@ -685,7 +685,7 @@ sys_socketpair(struct thread *td, struct socketpair_args *uap)
static int
sendit(struct thread *td, int s, struct msghdr *mp, int flags)
{
struct mbuf *control = NULL;
struct mbuf *control;
struct sockaddr *to;
int error;
@ -737,8 +737,6 @@ sendit(struct thread *td, int s, struct msghdr *mp, int flags)
bad:
free(to, M_SONAME);
if (control)
m_freem(control);
return (error);
}