Changeset 94923 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 8, 2022 7:56:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151331
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r93444 r94923 114 114 115 115 unconst(mEventSource).createObject(); 116 HRESULT rc = mEventSource->init();117 AssertComRCReturnRC( rc);116 HRESULT hrc = mEventSource->init(); 117 AssertComRCReturnRC(hrc); 118 118 119 119 /* Confirm a successful initialization */ … … 314 314 if (pUpPort) 315 315 { 316 int rc = pUpPort->pfnReleaseKeys(pUpPort);317 if (RT_FAILURE( rc))318 AssertMsgFailed(("Failed to release keys on all keyboards! rc=%Rrc\n",rc));316 int vrc = pUpPort->pfnReleaseKeys(pUpPort); 317 if (RT_FAILURE(vrc)) 318 AssertMsgFailed(("Failed to release keys on all keyboards! vrc=%Rrc\n", vrc)); 319 319 } 320 320
Note:
See TracChangeset
for help on using the changeset viewer.