Check for Null strings, white-only strings

date	2005.01.25.17.41.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:20:09 +00:00
parent e8227549cc
commit 6c4555021f

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: utmisc - common utility procedures
* $Revision: 1.104 $
* $Revision: 1.105 $
*
******************************************************************************/
@ -517,6 +517,13 @@ AcpiUtStrtoul64 (
String++;
}
/* Any string left? */
if (!(*String))
{
goto ErrorExit;
}
/* Main loop: convert the string to a 64-bit integer */
while (*String)