By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 791
Collapse All | Expand All

(-)branches/kdesupport/3.5/kdesupport/akode/plugins/xiph_decoder/flac113_decoder.cpp (-1 / +1 lines)
Lines 108-114 Link Here
108
static FLAC__StreamDecoderReadStatus flac_read_callback(
108
static FLAC__StreamDecoderReadStatus flac_read_callback(
109
        const FLAC__StreamDecoder *,
109
        const FLAC__StreamDecoder *,
110
        FLAC__byte buffer[],
110
        FLAC__byte buffer[],
111
        unsigned *bytes,
111
        size_t *bytes,
112
        void *client_data)
112
        void *client_data)
113
{
113
{
114
    FLACDecoder::private_data *data = (FLACDecoder::private_data*)client_data;
114
    FLACDecoder::private_data *data = (FLACDecoder::private_data*)client_data;

Return to bug 791