From fb971fb18eb94329bea0040e7f198ce86e68bab8 Mon Sep 17 00:00:00 2001 From: Nitin A Kamble Date: Sat, 15 Sep 2007 10:43:33 +0300 Subject: [PATCH] --- yaml --- r: 68439 b: refs/heads/master c: 12fa272e315af43d549ce22f9988392d0121350e h: refs/heads/master i: 68437: a5d77f63571d95090c5621a199759d5717a0f263 68435: ced393d272b56557a352cdce0ec2a334d5e0a5ca 68431: 0c303e1a4a814aae705f1c1863de8fc0485544ca v: v3 --- [refs] | 2 +- trunk/drivers/kvm/x86_emulate.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index ec5614718d9a..c7f72fbb01cb 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 26a3e983d154beca544afd36f293cfef10657f24 +refs/heads/master: 12fa272e315af43d549ce22f9988392d0121350e diff --git a/trunk/drivers/kvm/x86_emulate.c b/trunk/drivers/kvm/x86_emulate.c index cf8db670df7f..7360a71094f5 100644 --- a/trunk/drivers/kvm/x86_emulate.c +++ b/trunk/drivers/kvm/x86_emulate.c @@ -827,6 +827,7 @@ x86_emulate_memop(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops) srcmem_common: src.type = OP_MEM; src.ptr = (unsigned long *)cr2; + src.val = 0; if ((rc = ops->read_emulated((unsigned long)src.ptr, &src.val, src.bytes, ctxt->vcpu)) != 0) goto done; @@ -891,6 +892,7 @@ x86_emulate_memop(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops) dst.type = OP_MEM; dst.ptr = (unsigned long *)cr2; dst.bytes = (d & ByteOp) ? 1 : op_bytes; + dst.val = 0; if (d & BitOp) { unsigned long mask = ~(dst.bytes * 8 - 1);