From f139a4125682ecd45d96c2d1523443d1be65405c Mon Sep 17 00:00:00 2001 From: Marcelo Tosatti Date: Wed, 20 Jan 2010 14:26:34 -0200 Subject: fix savevm command without id or tag savevm without id or tag segfaults in: (gdb) bt #0 0x00007f600a83bf8a in __strcmp_sse42 () from /lib64/libc.so.6 #1 0x00000000004745b6 in bdrv_snapshot_find (bs=, sn_info=0x7fff996be280, name=0x0) at savevm.c:1631 #2 0x0000000000475c80 in del_existing_snapshots (name=, mon=) at savevm.c:1654 #3 do_savevm (name=, mon=) Signed-off-by: Marcelo Tosatti Signed-off-by: Anthony Liguori --- savevm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'savevm.c') diff --git a/savevm.c b/savevm.c index 829f735bd4..4b58663960 100644 --- a/savevm.c +++ b/savevm.c @@ -1695,7 +1695,7 @@ void do_savevm(Monitor *mon, const QDict *qdict) sn->vm_clock_nsec = qemu_get_clock(vm_clock); /* Delete old snapshots of the same name */ - if (del_existing_snapshots(mon, name) < 0) { + if (name && del_existing_snapshots(mon, name) < 0) { goto the_end; } -- cgit v1.2.3