[libvirt PATCH 28/38] virLockSpaceNew: `virHashNew` cannot return NULL

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Signed-off-by: Tim Wiederhake <twiederh@xxxxxxxxxx>
---
 src/util/virlockspace.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/util/virlockspace.c b/src/util/virlockspace.c
index 9986d8df41..edf2ec907f 100644
--- a/src/util/virlockspace.c
+++ b/src/util/virlockspace.c
@@ -247,8 +247,7 @@ virLockSpace *virLockSpaceNew(const char *directory)
 
     lockspace->dir = g_strdup(directory);
 
-    if (!(lockspace->resources = virHashNew(virLockSpaceResourceDataFree)))
-        goto error;
+    lockspace->resources = virHashNew(virLockSpaceResourceDataFree);
 
     if (directory) {
         if (virFileExists(directory)) {
-- 
2.31.1




[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]

  Powered by Linux