mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-21 10:52:22 +00:00
testQemuMonitorJSONqemuMonitorJSONGetChardevInfo: virHashNew
cannot return NULL
Signed-off-by: Tim Wiederhake <twiederh@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
70f32d5ece
commit
a856f5d0fc
@ -1811,8 +1811,8 @@ testQemuMonitorJSONqemuMonitorJSONGetChardevInfo(const void *opaque)
|
||||
{
|
||||
const testGenericData *data = opaque;
|
||||
virDomainXMLOption *xmlopt = data->xmlopt;
|
||||
g_autoptr(GHashTable) info = NULL;
|
||||
g_autoptr(GHashTable) expectedInfo = NULL;
|
||||
g_autoptr(GHashTable) info = virHashNew(qemuMonitorChardevInfoFree);
|
||||
g_autoptr(GHashTable) expectedInfo = virHashNew(NULL);
|
||||
qemuMonitorChardevInfo info0 = { NULL, VIR_DOMAIN_CHR_DEVICE_STATE_DEFAULT };
|
||||
qemuMonitorChardevInfo info1 = { (char *) "/dev/pts/21", VIR_DOMAIN_CHR_DEVICE_STATE_CONNECTED };
|
||||
qemuMonitorChardevInfo info2 = { (char *) "/dev/pts/20", VIR_DOMAIN_CHR_DEVICE_STATE_DEFAULT };
|
||||
@ -1822,10 +1822,6 @@ testQemuMonitorJSONqemuMonitorJSONGetChardevInfo(const void *opaque)
|
||||
if (!(test = qemuMonitorTestNewSchema(xmlopt, data->schema)))
|
||||
return -1;
|
||||
|
||||
if (!(info = virHashNew(qemuMonitorChardevInfoFree)) ||
|
||||
!(expectedInfo = virHashNew(NULL)))
|
||||
return -1;
|
||||
|
||||
if (virHashAddEntry(expectedInfo, "charserial1", &info1) < 0 ||
|
||||
virHashAddEntry(expectedInfo, "charserial0", &info2) < 0 ||
|
||||
virHashAddEntry(expectedInfo, "charmonitor", &info0) < 0 ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user