[libvirt PATCH v2 18/20] commandhelper: Use automatic memory management in printCwd

Tim Wiederhake twiederh at redhat.com
Mon Feb 1 11:28:02 UTC 2021


Signed-off-by: Tim Wiederhake <twiederh at redhat.com>
---
 tests/commandhelper.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/commandhelper.c b/tests/commandhelper.c
index 854f3c09bf..5f0c1f5a51 100644
--- a/tests/commandhelper.c
+++ b/tests/commandhelper.c
@@ -194,7 +194,7 @@ static void printDaemonization(FILE *log, struct Arguments *args)
 
 static int printCwd(FILE *log)
 {
-    char *cwd = NULL;
+    cleanup(char *, cleanupGeneric) cwd = NULL;
     char *display;
 
     if (!(cwd = getcwd(NULL, 0)))
@@ -213,7 +213,6 @@ static int printCwd(FILE *log)
 # endif
 
     fprintf(log, "CWD:%s\n", display);
-    free(cwd);
     return 0;
 }
 
-- 
2.26.2




More information about the libvir-list mailing list