VirtualBox

Changeset 62355 in vbox


Ignore:
Timestamp:
Jul 20, 2016 12:28:10 PM (8 years ago)
Author:
vboxsync
Message:

Audio/DevIchAc97.cpp: Bail out of the DMA transfer loop if an error occurred.

File:
1 edited

Legend:

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

    r62280 r62355  
    16021602        }
    16031603
    1604         if (rc == VINF_EOF) /* All data processed? */
    1605             break;
     1604        if (/* All data processed? */
     1605               rc == VINF_EOF
     1606            /* ... or an error occurred? */
     1607            || RT_FAILURE(rc))
     1608        {
     1609            break;
     1610        }
    16061611    }
    16071612
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