[libvirt] [PATCH] qemu: Use the proper string in qemuBlock...JSONSocketAddress()

Recent refactors made it so that the function may use uninitialized pointer, but it actually wanted to use a different variable and value at all. Signed-off-by: Martin Kletzander <mkletzan@redhat.com> --- src/qemu/qemu_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c index ccaf3261101d..93124c5ba486 100644 --- a/src/qemu/qemu_block.c +++ b/src/qemu/qemu_block.c @@ -482,7 +482,7 @@ qemuBlockStorageSourceBuildHostsJSONSocketAddress(virStorageSourcePtr src, case VIR_STORAGE_NET_HOST_TRANS_LAST: virReportError(VIR_ERR_INTERNAL_ERROR, _("transport protocol '%s' is not yet supported"), - transport); + virStorageNetHostTransportTypeToString(host->transport)); goto cleanup; } -- 2.13.3

On Mon, Jul 17, 2017 at 14:15:06 +0200, Martin Kletzander wrote:
Recent refactors made it so that the function may use uninitialized pointer, but it actually wanted to use a different variable and value at all.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com> --- src/qemu/qemu_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Oops, ACK
participants (2)
-
Martin Kletzander
-
Peter Krempa