Changeset 39427 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Nov 25, 2011 2:29:43 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75056
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r39421 r39427 430 430 for (uint32_t i = 0; i < pBuf->uParmCount; i++) 431 431 { 432 /** @todo r=bird: Should this CHECK the type instead of overriding 433 * it?? What happens if a guest initializes a PTR param as a 32-bit 434 * or 64-bit value with a non-zero value? You'll crash and burn in 435 * the memcpy below! */ 432 436 paParms[i].type = pBuf->pParms[i].type; 433 437 switch (paParms[i].type) … … 439 443 case VBOX_HGCM_SVC_PARM_64BIT: 440 444 /* Not supported yet. */ 445 /** @todo r=bird: This case needs to fail! */ 441 446 break; 442 447 … … 458 463 459 464 default: 465 /** @todo r=bird: This case needs to fail! */ 460 466 break; 461 467 } … … 589 595 * 590 596 * @return IPRT status code. 591 * @param pCmd Host com amnd to send.597 * @param pCmd Host command to send. 592 598 * @param callHandle Call handle of the client to send the command to. 593 599 * @param cParms Number of parameters.
Note:
See TracChangeset
for help on using the changeset viewer.