]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
cmdCheckpointList: Fix memory leak
authorTim Wiederhake <twiederh@redhat.com>
Mon, 19 Apr 2021 11:54:13 +0000 (13:54 +0200)
committerLaine Stump <laine@redhat.com>
Mon, 19 Apr 2021 20:09:56 +0000 (16:09 -0400)
Fixes: 3caa28dc50df7ec215713075d669b20bef6473a2
Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
tools/virsh-checkpoint.c

index 20a02b0b02578c7946b3748f599816cd9b62a94f..afe849dd16ed914e4d53f25aa31616274e1e71e7 100644 (file)
@@ -721,7 +721,6 @@ cmdCheckpointList(vshControl *ctl,
     virDomainCheckpointPtr checkpoint = NULL;
     long long creation_longlong;
     g_autoptr(GDateTime) then = NULL;
-    g_autofree gchar *thenstr = NULL;
     bool tree = vshCommandOptBool(cmd, "tree");
     bool name = vshCommandOptBool(cmd, "name");
     bool from = vshCommandOptBool(cmd, "from");
@@ -804,6 +803,7 @@ cmdCheckpointList(vshControl *ctl,
     }
 
     for (i = 0; i < checkpointlist->nchks; i++) {
+        g_autofree gchar *thenstr = NULL;
         const char *chk_name;
 
         /* free up memory from previous iterations of the loop */