Changeset 40641 in vbox
- Timestamp:
- Mar 26, 2012 1:11:32 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77070
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/VBoxTpG.cpp
r40636 r40641 1042 1042 { 1043 1043 /* Check stream state. */ 1044 AssertReturn(!pStream->fWriteOrRead, false);1045 AssertReturn(RT_SUCCESS(pStream->rc), false);1046 AssertReturn(pStream->fFullyLineated, false);1044 AssertReturn(!pStream->fWriteOrRead, NULL); 1045 AssertReturn(RT_SUCCESS(pStream->rc), NULL); 1046 AssertReturn(pStream->fFullyLineated, NULL); 1047 1047 1048 1048 /* Get the number of chars left on the line and locate the current char. */ … … 1081 1081 { 1082 1082 /* Check stream state. */ 1083 AssertReturn(!pStream->fWriteOrRead, false);1084 AssertReturn(RT_SUCCESS(pStream->rc), false);1085 AssertReturn(pStream->fFullyLineated, false);1083 AssertReturn(!pStream->fWriteOrRead, NULL); 1084 AssertReturn(RT_SUCCESS(pStream->rc), NULL); 1085 AssertReturn(pStream->fFullyLineated, NULL); 1086 1086 1087 1087 /* Get the number of chars left on the line and locate the current char. */ … … 1517 1517 1518 1518 /** 1519 * Unmangles the probe name. 1520 * 1519 * Unmangles the probe name. 1520 * 1521 1521 * This involves translating double underscore to dash. 1522 * 1522 * 1523 1523 * @returns Pointer to the unmangled name in the string table. 1524 1524 * @param pszMangled The mangled name. … … 1582 1582 if (!pProbe->pszUnmangledName) 1583 1583 return parseError(pStrm, 0, "Out of memory"); 1584 1584 1585 1585 /* 1586 1586 * Parse loop for the argument.
Note:
See TracChangeset
for help on using the changeset viewer.