Changeset 98262 in vbox for trunk/src/VBox/Main/src-server/BandwidthGroupImpl.cpp
- Timestamp:
- Jan 24, 2023 1:42:14 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155461
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/BandwidthGroupImpl.cpp
r98103 r98262 134 134 /* sanity */ 135 135 AutoCaller thatCaller(aThat); 136 AssertComRCReturnRC(thatCaller. rc());136 AssertComRCReturnRC(thatCaller.hrc()); 137 137 138 138 if (aReshare) … … 176 176 177 177 AutoCaller thatCaller(aThat); 178 AssertComRCReturnRC(thatCaller. rc());178 AssertComRCReturnRC(thatCaller.hrc()); 179 179 180 180 AutoReadLock thatlock(aThat COMMA_LOCKVAL_SRC_POS); … … 270 270 { 271 271 AutoCaller autoCaller(this); 272 AssertComRCReturnVoid(autoCaller. rc());272 AssertComRCReturnVoid(autoCaller.hrc()); 273 273 274 274 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); … … 285 285 /* sanity */ 286 286 AutoCaller autoCaller(this); 287 AssertComRCReturnVoid(autoCaller. rc());287 AssertComRCReturnVoid(autoCaller.hrc()); 288 288 289 289 /* sanity too */ 290 290 AutoCaller peerCaller(m->pPeer); 291 AssertComRCReturnVoid(peerCaller. rc());291 AssertComRCReturnVoid(peerCaller.hrc()); 292 292 293 293 /* lock both for writing since we modify both (m->pPeer is "master" so locked … … 318 318 /* sanity */ 319 319 AutoCaller autoCaller(this); 320 AssertComRCReturnVoid(autoCaller. rc());320 AssertComRCReturnVoid(autoCaller.hrc()); 321 321 322 322 /* sanity too */ 323 323 AutoCaller peerCaller(m->pPeer); 324 AssertComRCReturnVoid(peerCaller. rc());324 AssertComRCReturnVoid(peerCaller.hrc()); 325 325 326 326 /* peer is not modified, lock it for reading (m->pPeer is "master" so locked
Note:
See TracChangeset
for help on using the changeset viewer.