Changeset e0c708fec3e8a001994174b0d647f4ac34cd9e29
- Timestamp:
- 06/29/08 00:00:25
(2 months ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1214690425 +0000
- git-parent:
[470ba2c1ea11b8b11fda606ff0279fad11e6c4a2]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1214690388 +0000
- Message:
Fixed invalid unlock on invalid audio format.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rcb02b26 |
re0c708f |
|
| 58 | 58 | msg_Err( p_aout, "too many audio channels (%u)", |
|---|
| 59 | 59 | p_format->i_channels ); |
|---|
| 60 | | goto error; |
|---|
| | 60 | return NULL; |
|---|
| 61 | 61 | } |
|---|
| 62 | 62 | |
|---|
| … | … | |
| 65 | 65 | msg_Err( p_aout, "excessive audio sample frequency (%u)", |
|---|
| 66 | 66 | p_format->i_rate ); |
|---|
| 67 | | goto error; |
|---|
| | 67 | return NULL; |
|---|
| 68 | 68 | } |
|---|
| 69 | 69 | |
|---|