37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 4732cb4a9306ea9b8487b66fa14316caa05428ed Mon Sep 17 00:00:00 2001
|
|
From: Tim Wiederhake <twiederh@redhat.com>
|
|
Date: Mon, 19 Apr 2021 13:54:14 +0200
|
|
Subject: [PATCH 062/108] cmdSnapshotList: Fix memory leak
|
|
|
|
Fixes: 3caa28dc50df7ec215713075d669b20bef6473a2
|
|
Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
|
|
Reviewed-by: Laine Stump <laine@redhat.com>
|
|
(cherry picked from commit 89ce1ef86b0c8b0e039ae770221376497354f085)
|
|
---
|
|
tools/virsh-snapshot.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/virsh-snapshot.c b/tools/virsh-snapshot.c
|
|
index d5e68e4b18..376290d468 100644
|
|
--- a/tools/virsh-snapshot.c
|
|
+++ b/tools/virsh-snapshot.c
|
|
@@ -1493,7 +1493,6 @@ cmdSnapshotList(vshControl *ctl, const vshCmd *cmd)
|
|
char *state = 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");
|
|
@@ -1588,6 +1587,7 @@ cmdSnapshotList(vshControl *ctl, const vshCmd *cmd)
|
|
}
|
|
|
|
for (i = 0; i < snaplist->nsnaps; i++) {
|
|
+ g_autofree gchar *thenstr = NULL;
|
|
const char *snap_name;
|
|
|
|
/* free up memory from previous iterations of the loop */
|
|
--
|
|
2.33.0
|
|
|