Changeset 103066 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jan 25, 2024 3:03:18 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r101362 r103066 549 549 uint16_t const iGroup = RT_HI_U16(fFlagsAndGroup); 550 550 if ( iGroup != UINT16_MAX 551 && ( ( pLoggerInt->afGroups[iGroup < pLoggerInt->cGroups ? iGroup : 0]& (fFlags | RTLOGGRPFLAGS_ENABLED))551 && ( (*(pLoggerInt->afGroups + (iGroup < pLoggerInt->cGroups ? iGroup : 0)) & (fFlags | RTLOGGRPFLAGS_ENABLED)) 552 552 != (fFlags | RTLOGGRPFLAGS_ENABLED))) 553 553 pLoggerInt = NULL; … … 1556 1556 iGroup = pLoggerInt->cGroups; 1557 1557 while (iGroup-- > 0) 1558 pLoggerInt->afGroups[iGroup]= 0;1558 *(pLoggerInt->afGroups + iGroup) = 0; 1559 1559 1560 1560 /* … … 1789 1789 { 1790 1790 if (fEnabled) 1791 pLoggerInt->afGroups[i]|= fFlags;1791 *(pLoggerInt->afGroups + i) |= fFlags; 1792 1792 else 1793 pLoggerInt->afGroups[i]&= ~fFlags;1793 *(pLoggerInt->afGroups + i) &= ~fFlags; 1794 1794 } 1795 1795 } … … 4159 4159 return VINF_LOG_DISABLED; 4160 4160 if ( iGroup != ~0U 4161 && ( pLoggerInt->afGroups[iGroup]& (fFlags | RTLOGGRPFLAGS_ENABLED)) != (fFlags | RTLOGGRPFLAGS_ENABLED))4161 && (*(pLoggerInt->afGroups + iGroup) & (fFlags | RTLOGGRPFLAGS_ENABLED)) != (fFlags | RTLOGGRPFLAGS_ENABLED)) 4162 4162 return VINF_LOG_DISABLED; 4163 4163
Note:
See TracChangeset
for help on using the changeset viewer.