diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-03 11:06:40 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-03 11:06:40 +0000 |
commit | 514a9684972102eccf5a8a85c65febcc3966e21f (patch) | |
tree | 74348a308e638fbae6cb30897f41b2d80ca74027 /src | |
parent | 9653f6fc9836f78251c8526378449e7e5a45be5d (diff) | |
download | xine-lib-514a9684972102eccf5a8a85c65febcc3966e21f.tar.gz xine-lib-514a9684972102eccf5a8a85c65febcc3966e21f.tar.bz2 |
Fix for libflac <1.1.3, thanks to Ville Skyttä for reporting, closes bug #1627321.
CVS patchset: 8586
CVS date: 2007/02/03 11:06:40
Diffstat (limited to 'src')
-rw-r--r-- | src/libflac/decoder_flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libflac/decoder_flac.c b/src/libflac/decoder_flac.c index 095555e1d..9b77cc27d 100644 --- a/src/libflac/decoder_flac.c +++ b/src/libflac/decoder_flac.c @@ -363,7 +363,7 @@ open_plugin (audio_decoder_class_t *class_gen, xine_stream_t *stream) { FLAC__stream_decoder_set_client_data (this->flac_decoder, this); - if (FLAC__stream_decoder_init (this->flac_decoder) == FLAC__STREAM_DECODER_SEARCH_FOR_METADATA) { + if (FLAC__stream_decoder_init (this->flac_decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA) { free (this); return NULL; } |