Changeset 1577 in vbox
- Timestamp:
- Mar 20, 2007 5:34:20 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/hgcm/HGCM.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/hgcm/HGCM.cpp
r1399 r1577 471 471 } 472 472 473 switch (pMsgCore->MsgId ()) 473 /* Cache required information to avoid unnecessary pMsgCore access. */ 474 uint32_t u32MsgId = pMsgCore->MsgId (); 475 476 switch (u32MsgId) 474 477 { 475 478 case HGCMMSGID_SVC_LOAD: … … 589 592 default: 590 593 { 591 Log(("hgcmServiceThread::Unsupported message number %08X\n", pMsgCore->MsgId ()));594 Log(("hgcmServiceThread::Unsupported message number %08X\n", u32MsgId)); 592 595 rc = VERR_NOT_SUPPORTED; 593 596 } break; 594 597 } 595 598 596 if ( pMsgCore->MsgId ()!= HGCMMSGID_GUESTCALL597 && pMsgCore->MsgId ()!= HGCMMSGID_HOSTCALL)599 if ( u32MsgId != HGCMMSGID_GUESTCALL 600 && u32MsgId != HGCMMSGID_HOSTCALL) 598 601 { 599 602 /* For HGCMMSGID_GUESTCALL & HGCMMSGID_HOSTCALL the service … … 1215 1218 } 1216 1219 1217 switch (pMsgCore->MsgId ()) 1220 uint32_t u32MsgId = pMsgCore->MsgId (); 1221 1222 switch (u32MsgId) 1218 1223 { 1219 1224 case HGCMMSGID_CONNECT: … … 1346 1351 default: 1347 1352 { 1348 Log(("hgcmThread: Unsupported message number %08X!!!\n", pMsgCore->MsgId ()));1353 Log(("hgcmThread: Unsupported message number %08X!!!\n", u32MsgId)); 1349 1354 rc = VERR_NOT_SUPPORTED; 1350 1355 } break;
Note:
See TracChangeset
for help on using the changeset viewer.

