mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 09:34:17 +00: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…
x
Reference in New Issue
Block a user