mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 20:36:39 +07:00
KVM: fix uninitialized warning
Fix: warning: ‘cs_sel’ may be used uninitialized in this function warning: ‘ss_sel’ may be used uninitialized in this function Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
8b0cedff04
commit
1249b96e72
@ -1996,7 +1996,7 @@ static int emulate_sysexit(struct x86_emulate_ctxt *ctxt)
|
||||
struct desc_struct cs, ss;
|
||||
u64 msr_data;
|
||||
int usermode;
|
||||
u16 cs_sel, ss_sel;
|
||||
u16 cs_sel = 0, ss_sel = 0;
|
||||
|
||||
/* inject #GP if in real mode or Virtual 8086 mode */
|
||||
if (ctxt->mode == X86EMUL_MODE_REAL ||
|
||||
|
Loading…
Reference in New Issue
Block a user