Changeset 33436 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Oct 25, 2010 4:18:44 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp
r33435 r33436 1379 1379 Log(("hda: access to registers except GCTL is blocked while reset\n")); 1380 1380 } 1381 if ( index != -11382 && cb <=4)1381 if ( index == -1 1382 || cb > 4) 1383 1383 { 1384 1384 LogRel(("hda: Invalid read access @0x%x(of bytes:%d)\n", u32Offset, cb)); … … 1430 1430 Log(("hda: access to registers except GCTL is blocked while reset\n")); 1431 1431 } 1432 if ( index != -11433 && cb <=4)1432 if ( index == -1 1433 || cb > 4) 1434 1434 { 1435 1435 LogRel(("hda: Invalid write access @0x%x(of bytes:%d)\n", u32Offset, cb));
Note:
See TracChangeset
for help on using the changeset viewer.