Changeset 61669 in vbox
- Timestamp:
- Jun 13, 2016 8:44:56 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108023
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp
r59415 r61669 1533 1533 iDiff = memcmp(pszSubName, pNode->papChildren[i]->pszName, cchCompare); 1534 1534 if (!iDiff) 1535 { 1535 1536 iDiff = cchSubName == cchCompare ? 0 : cchSubName > cchCompare ? 1 : -1; 1537 /* For cases when exisiting node name is same as new node name with additional characters. */ 1538 if (!iDiff) 1539 iDiff = cchSubName == pNode->papChildren[i]->cchName ? 0 : cchSubName > pNode->papChildren[i]->cchName ? 1 : -1; 1540 } 1536 1541 if (iDiff > 0) 1537 1542 {
Note:
See TracChangeset
for help on using the changeset viewer.