From: Tim Wiederhake Date: Mon, 19 Apr 2021 11:54:13 +0000 (+0200) Subject: cmdCheckpointList: Fix memory leak X-Git-Tag: v7.3.0-rc1~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b8c91f487592c6c067847ca59dde405ca17573f;p=thirdparty%2Flibvirt.git cmdCheckpointList: Fix memory leak Fixes: 3caa28dc50df7ec215713075d669b20bef6473a2 Signed-off-by: Tim Wiederhake Reviewed-by: Laine Stump --- diff --git a/tools/virsh-checkpoint.c b/tools/virsh-checkpoint.c index 20a02b0b02..afe849dd16 100644 --- a/tools/virsh-checkpoint.c +++ b/tools/virsh-checkpoint.c @@ -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 */