Changeset 4084 in vbox
- Timestamp:
- Aug 7, 2007 6:55:32 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23531
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/STAM.cpp
r4072 r4084 170 170 { 171 171 /* 172 * Free used memory and RWLock.172 * Free used memory and the RWLock. 173 173 */ 174 174 PSTAMDESC pCur = pVM->stam.s.pHead; … … 180 180 } 181 181 182 if (pVM->stam.s.RWSem) 182 /* careful here as we might be called twice in on some failure paths (?) */ 183 if (pVM->stam.s.RWSem != NIL_RTSEMRW) 183 184 RTSemRWDestroy(pVM->stam.s.RWSem); 184 pVM->stam.s.RWSem = 0;185 pVM->stam.s.RWSem = NIL_RTSEMRW; 185 186 return VINF_SUCCESS; 186 187 }
Note:
See TracChangeset
for help on using the changeset viewer.