From: aliguori Date: Fri, 20 Mar 2009 16:18:35 +0000 (+0000) Subject: x86: Add NULL check to lsl (Jan Kiszka) X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0e39d3f89b796dc3bc80409309c738a01d8c20d2;p=xenclient%2Fioemu.git x86: Add NULL check to lsl (Jan Kiszka) According to the Intel specs, lsl performs a check against NULL for the provided selector, just like lar does. helper_lar() includes the corresponding code, helper_lsl() was lacking it so far. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/branches/stable_0_10_0@6866 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 25e079b8..be092637 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -3241,6 +3241,8 @@ target_ulong helper_lsl(target_ulong selector1) selector = selector1 & 0xffff; eflags = helper_cc_compute_all(CC_OP); + if ((selector & 0xfffc) == 0) + goto fail; if (load_segment(&e1, &e2, selector) != 0) goto fail; rpl = selector & 3;