30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
|
|
From f64a491232e5aeca4d0d86523564bdea9913bb73 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Tim Wiederhake <twiederh@redhat.com>
|
||
|
|
Date: Mon, 19 Apr 2021 13:54:15 +0200
|
||
|
|
Subject: [PATCH 063/108] virshCheckpointListCollect: Do not pass NULL to qsort
|
||
|
|
|
||
|
|
Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
|
||
|
|
Reviewed-by: Laine Stump <laine@redhat.com>
|
||
|
|
(cherry picked from commit 1c34211c22de28127a509edbf2cf2f44cb0d891e)
|
||
|
|
---
|
||
|
|
tools/virsh-checkpoint.c | 3 ++-
|
||
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/tools/virsh-checkpoint.c b/tools/virsh-checkpoint.c
|
||
|
|
index 1a3a74b2d5..6effbdc26c 100644
|
||
|
|
--- a/tools/virsh-checkpoint.c
|
||
|
|
+++ b/tools/virsh-checkpoint.c
|
||
|
|
@@ -622,7 +622,8 @@ virshCheckpointListCollect(vshControl *ctl,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
- if (!(orig_flags & VIR_DOMAIN_CHECKPOINT_LIST_TOPOLOGICAL))
|
||
|
|
+ if (!(orig_flags & VIR_DOMAIN_CHECKPOINT_LIST_TOPOLOGICAL) &&
|
||
|
|
+ checkpointlist->chks)
|
||
|
|
qsort(checkpointlist->chks, checkpointlist->nchks,
|
||
|
|
sizeof(*checkpointlist->chks), virshChkSorter);
|
||
|
|
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|