mirror of
https://github.com/qemu/qemu.git
synced 2024-11-27 05:43:47 +08:00
migration: Do not initialise statics and globals to 0 or NULL
Signed-off-by: Bihong Yu <yubihong@huawei.com> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <1603163448-27122-7-git-send-email-yubihong@huawei.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
f4c51a6bfd
commit
49324e939c
@ -2743,7 +2743,7 @@ static int load_xbzrle(QEMUFile *f, ram_addr_t addr, void *host)
|
||||
*/
|
||||
static inline RAMBlock *ram_block_from_stream(QEMUFile *f, int flags)
|
||||
{
|
||||
static RAMBlock *block = NULL;
|
||||
static RAMBlock *block;
|
||||
char id[256];
|
||||
uint8_t len;
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
||||
#include "qemu/bitmap.h"
|
||||
#include "net/announce.h"
|
||||
|
||||
const unsigned int postcopy_ram_discard_version = 0;
|
||||
const unsigned int postcopy_ram_discard_version;
|
||||
|
||||
/* Subcommands for QEMU_VM_COMMAND */
|
||||
enum qemu_vm_cmd {
|
||||
|
Loading…
Reference in New Issue
Block a user