Changeset 8346 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Apr 24, 2008 7:36:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/cidr.cpp
r8295 r8346 51 51 { 52 52 int rc = RTStrToUInt8Ex(psz, ppszNext, 10, pu8); 53 if ( rc != VINF_SUCCESS54 && rc != VWRN_TRAILING_CHARS 53 if (( rc != VINF_SUCCESS 54 && rc != VWRN_TRAILING_CHARS) 55 55 || *pu8 > 254) 56 56 return VERR_INVALID_PARAMETER;
Note:
See TracChangeset
for help on using the changeset viewer.