From patchwork Sat Sep 29 09:32:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: trivial fix of inet_listen() parameter Date: Fri, 28 Sep 2012 23:32:31 -0000 From: Amos Kong X-Patchwork-Id: 188024 Message-Id: <1348911151-7744-1-git-send-email-akong@redhat.com> To: qemu-devel@nongnu.org Cc: stefanha@gmail.com, aliguori@us.ibm.com, Amos Kong , mdroth@linux.vnet.ibm.com .. int inet_listen(const char *str, char *ostr, int olen, .. int socktype, int port_offset, Error **errp) Here 'ostr' is NULL, so change 'olen' to zero. Signed-off-by: Amos Kong Reviewed-By: Igor Mammedov --- migration-tcp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/migration-tcp.c b/migration-tcp.c index a15c2b8..34d6d89 100644 --- a/migration-tcp.c +++ b/migration-tcp.c @@ -123,7 +123,7 @@ int tcp_start_incoming_migration(const char *host_port, Error **errp) { int s; - s = inet_listen(host_port, NULL, 256, SOCK_STREAM, 0, errp); + s = inet_listen(host_port, NULL, 0, SOCK_STREAM, 0, errp); if (s < 0) { return -1;