mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Sync to Wine-20050111:
Eric Pouech <pouech-eric@wanadoo.fr> - Another round of const correctness fixes. svn path=/trunk/; revision=13002
This commit is contained in:
parent
2b7c8d6391
commit
0edd21e67f
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue