Changeset 86510 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 9, 2020 10:38:04 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140825
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
r86499 r86510 135 135 PPDMMOD pModule = pUVM->pdm.s.pModules; 136 136 pUVM->pdm.s.pModules = NULL; 137 PPDMMOD *ppNext = &pUVM->pdm.s.pModules; 137 138 while (pModule) 138 139 { … … 162 163 busy when we're called the first time very very early in vmR3Destroy(). */ 163 164 PPDMMOD pNextModule = pModule->pNext; 164 pModule->pNext = pUVM->pdm.s.pModules; 165 pUVM->pdm.s.pModules = pModule; 165 166 pModule->pNext = NULL; 167 *ppNext = pModule; 168 ppNext = &pModule->pNext; 169 166 170 pModule = pNextModule; 167 171 continue;
Note:
See TracChangeset
for help on using the changeset viewer.