[flac-dev] Testing needed

Dave Yeo dave.r.yeo at gmail.com
Mon Feb 27 00:14:18 PST 2012


On 02/26/12 10:58 pm, Erik de Castro Lopo wrote:
> If you're interested in pursuing this please try changing line 175
> of src/share/utf8/iconvert.c from:
> 
> k = iconv(cd2, 0, 0, &ob, &obl);
> 
> to:
> 
> k = iconv(cd2, 0, 0, (const char**) &ob, &obl);
> 
> and seeing if there is a warning with the replacement.

Shouldn't that be changing
    k = iconv(cd2, &ib, &ibl, &ob, &obl);
to
    k = iconv(cd2,(const char**) &ib, &ibl, &ob, &obl);

which here gets rid of the warning on line 175.


More information about the flac-dev mailing list