VirtualBox

Changeset 40112 in vbox for trunk/src


Ignore:
Timestamp:
Feb 14, 2012 2:05:25 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76253
Message:

Audio/HDA: reinitialize pointer to verb routine before every lookup and don't try process verb vith NULL verb routine.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp

    r39368 r40112  
    883883        uint32_t cmd;
    884884        uint64_t resp;
     885        pfn = (PFNCODECVERBPROCESSOR)NULL;
    885886        corbRp++;
    886887        cmd = pState->pu32CorbBuf[corbRp];
     
    890891        Assert(pfn);
    891892        (rirbWp)++;
    892         rc = pfn(&pState->Codec, cmd, &resp);
     893
     894        if (RT_LIKELY(pfn))
     895            rc = pfn(&pState->Codec, cmd, &resp);
     896        else
     897            rc = VERR_INVALID_FUNCTION;
     898
    893899        if (RT_FAILURE(rc))
    894900            AssertRCReturn(rc, rc);
Note: See TracChangeset for help on using the changeset viewer.

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