From f3ada41b992a399603e8186d3ab730a1b0bf4729 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Fri, 24 Feb 2017 20:34:52 +0800 Subject: [PATCH] fix the last fix that crashes samples --- qemu/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/exec.c b/qemu/exec.c index 77c5bd8e..e6923862 100644 --- a/qemu/exec.c +++ b/qemu/exec.c @@ -1489,7 +1489,7 @@ static void tcg_commit(MemoryListener *listener) void address_space_init_dispatch(AddressSpace *as) { - MemoryListener ml; + MemoryListener ml = { 0 }; ml.begin = mem_begin; ml.commit = mem_commit;