]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/pve/0035-fix-possible-unitialised-return-value.patch
bump version to 2.9.0-1~rc2+5
[pve-qemu-kvm.git] / debian / patches / pve / 0035-fix-possible-unitialised-return-value.patch
CommitLineData
87ba737b 1From 6db418de8e775dd2f3699033699777498f4e2afd Mon Sep 17 00:00:00 2001
b07d35a5
TL
2From: Thomas Lamprecht <t.lamprecht@proxmox.com>
3Date: Wed, 6 Apr 2016 16:45:15 +0200
adeb0c7a 4Subject: [PATCH 35/48] fix possible unitialised return value
b07d35a5
TL
5
6---
7 migration/savevm.c | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/migration/savevm.c b/migration/savevm.c
1a91ab45 11index feb0dc6..d2615f4 100644
b07d35a5
TL
12--- a/migration/savevm.c
13+++ b/migration/savevm.c
1a91ab45 14@@ -1111,7 +1111,7 @@ int qemu_savevm_state_complete_precopy(QEMUFile *f, bool iterable_only)
b07d35a5
TL
15 QJSON *vmdesc;
16 int vmdesc_len;
17 SaveStateEntry *se;
18- int ret;
19+ int ret = -1;
20 bool in_postcopy = migration_in_postcopy(migrate_get_current());
21
22 trace_savevm_state_complete_precopy();
23--
242.1.4
25