VirtualBox

Changeset 106514 in vbox for trunk/src/VBox/Main/glue


Ignore:
Timestamp:
Oct 20, 2024 1:57:01 AM (3 months ago)
Author:
vboxsync
Message:

Main/glue: The iMethod variable in DLLHost_InvokeStub should've been used in the log statement. jiraref:VBP-1171

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/initterm.cpp

    r106061 r106514  
    262262    else
    263263    {
    264         LogRel(("DLLHost_InvokeStub: Rejected call to CDLLHost::%s: rpcFlags=%#x cbBuffer=%#x dataRepresentation=%d buffer=%p:{%.*Rhxs} reserved1=%p reserved2={%p,%p,%p,%p,%p}\n",
    265                 pMsg->iMethod == 0 ? "QueryInterface" :
    266                 pMsg->iMethod == 1 ? "AddRef" :
    267                 pMsg->iMethod == 2 ? "ReleaseRef" :
    268                 pMsg->iMethod == 3 ? "DllGetClassObject" : "Unknown", pMsg->rpcFlags, pMsg->cbBuffer,
     264        LogRel(("DLLHost_InvokeStub: Rejected call to CDLLHost::%s: iMethod=%#x rpcFlags=%#x cbBuffer=%#x dataRepresentation=%d buffer=%p:{%.*Rhxs} reserved1=%p reserved2={%p,%p,%p,%p,%p}\n",
     265                iMethod == 0 ? "QueryInterface" :
     266                iMethod == 1 ? "AddRef" :
     267                iMethod == 2 ? "ReleaseRef" :
     268                iMethod == 3 ? "DllGetClassObject" : "Unknown", pMsg->iMethod, pMsg->rpcFlags, pMsg->cbBuffer,
    269269                pMsg->dataRepresentation, pMsg->Buffer, RT_VALID_PTR(pMsg->Buffer) ? pMsg->cbBuffer : 0, pMsg->Buffer,
    270270                pMsg->reserved1, pMsg->reserved2[0], pMsg->reserved2[1], pMsg->reserved2[2], pMsg->reserved2[3], pMsg->reserved2[4]));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette