Changeset 13839 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Nov 5, 2008 3:27:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38831
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r11922 r13839 42 42 { 43 43 rc = VERR_NOT_SUPPORTED; 44 AssertMsgFailed(("IoAllocateMdl % VGv%x failed!!\n", pv, u32Size));44 AssertMsgFailed(("IoAllocateMdl %p %x failed!!\n", pv, u32Size)); 45 45 } 46 46 else … … 58 58 IoFreeMdl (pMdl); 59 59 rc = VERR_INVALID_PARAMETER; 60 AssertMsgFailed(("MmProbeAndLockPages % VGv%x failed!!\n", pv, u32Size));60 AssertMsgFailed(("MmProbeAndLockPages %p %x failed!!\n", pv, u32Size)); 61 61 } 62 62 } … … 280 280 281 281 irp->AssociatedIrp.SystemBuffer = pvData; /* Output buffer. */ 282 irp->MdlAddress = NULL; 282 irp->MdlAddress = NULL; 283 283 284 284 /* A completion routine is required to signal the Event. */
Note:
See TracChangeset
for help on using the changeset viewer.