Changeset 9403 for trunk/src/setupapi/parser.c
- Timestamp:
- Nov 13, 2002, 12:50:07 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/setupapi/parser.c
r8667 r9403 28 28 29 29 #include "windef.h" 30 #include " ntddk.h"30 #include "winternl.h" 31 31 #include "winbase.h" 32 32 #include "winerror.h" … … 1667 1667 for (p = field->text; *p && isxdigitW(*p); p++) 1668 1668 { 1669 if ((value <<= 8) > 255)1669 if ((value <<= 4) > 255) 1670 1670 { 1671 1671 SetLastError( ERROR_INVALID_DATA );
Note:
See TracChangeset
for help on using the changeset viewer.