From: Christian Borntraeger <borntrae...@de.ibm.com> struct kvm_xcrs contains padding bytes. Let's use a designated initializer to avoid false positives from valgrind/memcheck.
Signed-off-by: Christian Borntraeger <borntrae...@de.ibm.com> Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> --- target-i386/kvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 3a3dfc4..42f8def 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -1085,7 +1085,7 @@ static int kvm_put_xsave(X86CPU *cpu) static int kvm_put_xcrs(X86CPU *cpu) { CPUX86State *env = &cpu->env; - struct kvm_xcrs xcrs; + struct kvm_xcrs xcrs = {}; if (!kvm_has_xcrs()) { return 0; -- 1.8.3.1