Announce: OpenSSH 6.5 released
Damien Miller
djm at mindrot.org
Fri Feb 7 09:21:36 EST 2014
On Thu, 6 Feb 2014, Corinna Vinschen wrote:
> Ping?
>
> Is there anything wrong with my analysis or the patch?
Committed, with this extra bit:
diff --git sshconnect.c sshconnect.c
index e3af605..8556662 100644
--- sshconnect.c
+++ sshconnect.c
@@ -307,7 +309,8 @@ ssh_create_socket(int privileged, struct addrinfo *ai)
return -1;
}
}
- freeaddrinfo(res);
+ if (res != NULL)
+ freeaddrinfo(res);
return sock;
}
More information about the openssh-unix-dev
mailing list