404507
From 53806054c0b1b7ee2c8df5e46fa18b87aaee1ca1 Mon Sep 17 00:00:00 2001
404507
Message-Id: <53806054c0b1b7ee2c8df5e46fa18b87aaee1ca1@dist-git>
404507
From: Peter Krempa <pkrempa@redhat.com>
404507
Date: Mon, 13 Nov 2017 13:37:52 +0100
404507
Subject: [PATCH] qemu: parse: Allocate disk definition with private data
404507
404507
Use virDomainDiskDefNew instead of VIR_ALLOC in
404507
qemuParseCommandLineDisk.
404507
404507
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1510781
404507
(cherry picked from commit 994c49ac34181cb664b18856df38c2f5c326ff03)
404507
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
404507
---
404507
 src/qemu/qemu_parse_command.c | 4 +---
404507
 1 file changed, 1 insertion(+), 3 deletions(-)
404507
404507
diff --git a/src/qemu/qemu_parse_command.c b/src/qemu/qemu_parse_command.c
404507
index 649c3b1ccf..a8d0d7c535 100644
404507
--- a/src/qemu/qemu_parse_command.c
404507
+++ b/src/qemu/qemu_parse_command.c
404507
@@ -658,10 +658,8 @@ qemuParseCommandLineDisk(virDomainXMLOptionPtr xmlopt,
404507
                           0) < 0)
404507
         return NULL;
404507
 
404507
-    if (VIR_ALLOC(def) < 0)
404507
+    if (!(def = virDomainDiskDefNew(xmlopt)))
404507
         goto cleanup;
404507
-    if (VIR_ALLOC(def->src) < 0)
404507
-        goto error;
404507
 
404507
     if (qemuDomainIsPSeries(dom))
404507
         def->bus = VIR_DOMAIN_DISK_BUS_SCSI;
404507
-- 
404507
2.15.0
404507