Changeset 34464 in vbox for trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
- Timestamp:
- Nov 29, 2010 1:45:37 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
r34450 r34464 713 713 int rc = RTVfsIoStrmRead(hVfsIos, &ch, 1, true /*fBLocking*/, NULL); 714 714 if (RT_FAILURE(rc)) 715 return rc == VERR_EOF ? VINF_EOF : rc;715 return rc; 716 716 717 717 /* \r\n */ … … 894 894 fType = s_aHexAttrs[i].fType; 895 895 for (unsigned off = 0; off < s_aHexAttrs[i].cchHex; off++) 896 if (!RT_C_IS_XDIGIT(psz Attr[off]))896 if (!RT_C_IS_XDIGIT(pszValue[off])) 897 897 { 898 898 RTStrPrintf(pszErr, cbErr, "Expected hex digit at %zu on line %u (value '%s', pos %u)",
Note:
See TracChangeset
for help on using the changeset viewer.