From af69f95bba3597db53a980597cfd371c9f6ee7cf Mon Sep 17 00:00:00 2001 From: jkim Date: Fri, 17 May 2013 23:13:40 +0000 Subject: Import ACPICA 20130517. --- source/compiler/aslutils.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/compiler/aslutils.c') diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c index a3690b1..8174eeb 100644 --- a/source/compiler/aslutils.c +++ b/source/compiler/aslutils.c @@ -956,6 +956,7 @@ UtStrtoul64 ( case 8: case 10: case 16: + break; default: @@ -1090,19 +1091,24 @@ ErrorExit: switch (Base) { case 8: + Status = AE_BAD_OCTAL_CONSTANT; break; case 10: + Status = AE_BAD_DECIMAL_CONSTANT; break; case 16: + Status = AE_BAD_HEX_CONSTANT; break; default: + /* Base validated above */ + break; } -- cgit v1.1