Changeset e0c708fec3e8a001994174b0d647f4ac34cd9e29

Show
Ignore:
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
  • src/audio_output/dec.c

    rcb02b26 re0c708f  
    5858        msg_Err( p_aout, "too many audio channels (%u)", 
    5959                 p_format->i_channels ); 
    60         goto error
     60        return NULL
    6161    } 
    6262 
     
    6565        msg_Err( p_aout, "excessive audio sample frequency (%u)", 
    6666                 p_format->i_rate ); 
    67         goto error
     67        return NULL
    6868    } 
    6969