Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2a0569bb
Commit
2a0569bb
authored
Jul 16, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't use toupperW in _toupper_l.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
55c1a162
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
14 deletions
+6
-14
ctype.c
dlls/msvcrt/ctype.c
+6
-14
No files found.
dlls/msvcrt/ctype.c
View file @
2a0569bb
...
...
@@ -363,8 +363,7 @@ int CDECL MSVCRT___iscsymf(int c)
int
CDECL
MSVCRT__toupper_l
(
int
c
,
MSVCRT__locale_t
locale
)
{
MSVCRT_pthreadlocinfo
locinfo
;
unsigned
char
str
[
2
],
*
p
=
str
;
WCHAR
wide
,
upper
;
unsigned
char
str
[
2
],
*
p
=
str
,
ret
[
2
];
if
(
!
locale
)
locinfo
=
get_locinfo
();
...
...
@@ -382,22 +381,15 @@ int CDECL MSVCRT__toupper_l(int c, MSVCRT__locale_t locale)
}
*
p
++
=
c
&
255
;
if
(
!
MultiByteToWideChar
(
locinfo
->
lc_codepage
,
MB_ERR_INVALID_CHARS
,
(
char
*
)
str
,
p
-
str
,
&
wide
,
1
))
return
c
;
upper
=
toupperW
(
wide
);
if
(
upper
==
wide
)
return
str
[
0
]
+
(
str
[
1
]
<<
8
);
switch
(
WideCharToMultiByte
(
locinfo
->
lc_codepage
,
0
,
&
upper
,
1
,
(
char
*
)
str
,
2
,
NULL
,
NULL
))
{
switch
(
__crtLCMapStringA
(
locinfo
->
lc_handle
[
MSVCRT_LC_CTYPE
],
LCMAP_UPPERCASE
,
(
char
*
)
str
,
p
-
str
,
(
char
*
)
ret
,
2
,
locinfo
->
lc_codepage
,
0
))
{
case
0
:
return
c
;
case
1
:
return
str
[
0
];
return
ret
[
0
];
default:
return
str
[
0
]
+
(
str
[
1
]
<<
8
);
return
ret
[
0
]
+
(
ret
[
1
]
<<
8
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment