From: Tim Wiederhake Date: Mon, 5 Jul 2021 14:49:52 +0000 (+0200) Subject: testQemuMonitorJSONqemuMonitorJSONGetChardevInfo: `virHashNew` cannot return NULL X-Git-Tag: v7.6.0-rc1~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a856f5d0fc33322f3bd00d1e8560294a44d7b17b;p=thirdparty%2Flibvirt.git testQemuMonitorJSONqemuMonitorJSONGetChardevInfo: `virHashNew` cannot return NULL Signed-off-by: Tim Wiederhake Reviewed-by: Peter Krempa --- diff --git a/tests/qemumonitorjsontest.c b/tests/qemumonitorjsontest.c index 37d878b0ad..0b321e8ed8 100644 --- a/tests/qemumonitorjsontest.c +++ b/tests/qemumonitorjsontest.c @@ -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 ||