Changeset 30320 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 21, 2010 8:35:09 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62878
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/VMAll.cpp
r28800 r30320 242 242 AssertPtr(pszErrorId); 243 243 Assert(*pszErrorId); 244 Assert( memchr(pszErrorId, '\0', 128) != NULL);244 Assert(RTStrEnd(pszErrorId, 128) != NULL); 245 245 AssertPtr(pszFormat); 246 Assert( memchr(pszFormat, '\0', 512) != NULL);246 Assert(RTStrEnd(pszFormat, 512) != NULL); 247 247 248 248 #ifdef IN_RING3
Note:
See TracChangeset
for help on using the changeset viewer.