From ea210ca7017b87a1c7bf02050d6c60dcac17f54b Mon Sep 17 00:00:00 2001
From: Gerd Hoffmann <kraxel@redhat.com>
Date: Mon, 14 Oct 2013 13:35:22 +0200
Subject: [PATCH 15/18] qemu-socket: don't leak opts on error
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
Message-id: <1381757723-23134-15-git-send-email-kraxel@redhat.com>
Patchwork-id: 54858
O-Subject: [RHEL-7 qemu-kvm PATCH 14/15] qemu-socket: don't leak opts on error
Bugzilla: 922010
RH-Acked-by: Hans de Goede <hdegoede@redhat.com>
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
(cherry picked from commit 7a5b6af13a45ae7109900dee03a436819302126c)
---
util/qemu-sockets.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
---
util/qemu-sockets.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c
index 126cbb6..095716e 100644
--- a/util/qemu-sockets.c
+++ b/util/qemu-sockets.c
@@ -963,7 +963,7 @@ int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp)
default:
error_setg(errp, "socket type unsupported for datagram");
- return -1;
+ fd = -1;
}
qemu_opts_del(opts);
return fd;
--
1.7.1