mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
Sync to Wine-20050111:
Eric Pouech <[email protected]> - Another round of const correctness fixes. svn path=/trunk/; revision=13002
This commit is contained in:
@@ -145,7 +145,7 @@ int wine_utf8_mbstowcs( int flags, const char *src, int srclen, WCHAR *dst, int
|
||||
unsigned int res;
|
||||
const char *srcend = src + srclen;
|
||||
|
||||
if (!dstlen) return get_length_mbs_utf8( src, srclen );
|
||||
if (!dstlen) return get_length_mbs_utf8( (const unsigned char*)src, srclen );
|
||||
|
||||
for (count = dstlen; count && (src < srcend); count--, dst++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user