[PATCH 1/5] win16/int21: make found filename uppercase.

Alexandre Julliard julliard at winehq.org
Wed May 30 06:32:28 CDT 2012


Oleksij Rempel <bug-track at fisher-privat.net> writes:

> @@ -3961,6 +3962,8 @@ static int INT21_FindNext( CONTEXT *context )
>              INT21_FindPath = dta->fullPath = NULL;
>          }
>          dta->count = n;
> +        p = dta->filename;
> +        for ( ; *p; p++) *p = toupper(*p);

Using toupper is probably not a good idea on OEM codepage strings. Which
app depends on this?

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list