FLAC__stream_decoder_set_metadata_respond_application
and
FLAC__stream_decoder_set_metadata_ignore_application
have this piece of code:
return decoder->protected_->state =
FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
The correct sequence should be the following:
decoder->protected_->state =
FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
return false;
Josh Coalson
2005-08-09
Josh Coalson
2005-09-03
Logged In: YES
user_id=78173
fixed in CVS, thanks.
Josh Coalson
2005-09-03
Josh Coalson
2006-05-26