VirtualBox

Changeset 33435 in vbox for trunk/src/VBox/Devices/Audio


Ignore:
Timestamp:
Oct 25, 2010 4:08:30 PM (14 years ago)
Author:
vboxsync
Message:

Audio/HDA: Assert->LogRel for special guests.

File:
1 edited

Legend:

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

    r33419 r33435  
    13791379        Log(("hda: access to registers except GCTL is blocked while reset\n"));
    13801380    }
    1381     Assert(   index != -1
    1382            && cb <= 4);
     1381    if (   index != -1
     1382           && cb <= 4)
     1383    {
     1384        LogRel(("hda: Invalid read access @0x%x(of bytes:%d)\n", u32Offset, cb));
     1385    }
    13831386    if (index != -1)
    13841387    {
     
    14271430        Log(("hda: access to registers except GCTL is blocked while reset\n"));
    14281431    }
    1429     Assert(   index != -1
    1430            && cb <= 4);
     1432    if (   index != -1
     1433           && cb <= 4)
     1434    {
     1435        LogRel(("hda: Invalid write access @0x%x(of bytes:%d)\n", u32Offset, cb));
     1436    }
    14311437    if (index != -1)
    14321438    {
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