arch: x86: kvm: x86.c: Cleaning up variable is set more than once
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Wed, 25 Jun 2014 12:25:58 +0000 (14:25 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 30 Jun 2014 14:52:04 +0000 (16:52 +0200)
A struct member variable is set to the same value more than once

This was found using a static code analysis program called cppcheck.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/x86.c

index 874607ae0583ea07aea3eef4e13fcedc7e039de9..5a8691b0ed76a39b968c81c37dbfca94c0594f69 100644 (file)
@@ -4730,7 +4730,6 @@ static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
        if (desc->g)
                var.limit = (var.limit << 12) | 0xfff;
        var.type = desc->type;
-       var.present = desc->p;
        var.dpl = desc->dpl;
        var.db = desc->d;
        var.s = desc->s;
This page took 0.029356 seconds and 5 git commands to generate.