[libvirt] [PATCH v2 21/37] Adapt to VIR_STRDUP in src/secret/*

Michal Privoznik mprivozn at redhat.com
Mon Apr 29 13:50:43 UTC 2013


---
 src/secret/secret_driver.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/secret/secret_driver.c b/src/secret/secret_driver.c
index 377b9f4..cfd5b6a 100644
--- a/src/secret/secret_driver.c
+++ b/src/secret/secret_driver.c
@@ -1097,8 +1097,7 @@ secretStateInitialize(bool privileged,
     secretDriverLock(driverState);
 
     if (privileged) {
-        base = strdup(SYSCONFDIR "/libvirt");
-        if (base == NULL)
+        if (VIR_STRDUP(base, SYSCONFDIR "/libvirt") < 0)
             goto out_of_memory;
     } else {
         base = virGetUserConfigDirectory();
-- 
1.8.1.5




More information about the libvir-list mailing list