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
97095766
Commit
97095766
authored
Jul 14, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 14, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't use strncmpiW in _wcsnicoll_l.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c6f19b12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
wcs.c
dlls/msvcrt/wcs.c
+19
-1
No files found.
dlls/msvcrt/wcs.c
View file @
97095766
...
...
@@ -209,7 +209,25 @@ int CDECL MSVCRT__wcsnicoll_l(const MSVCRT_wchar_t* str1, const MSVCRT_wchar_t*
locinfo
=
locale
->
locinfo
;
if
(
!
locinfo
->
lc_handle
[
MSVCRT_LC_COLLATE
])
return
strncmpiW
(
str1
,
str2
,
count
);
{
MSVCRT_wchar_t
c1
,
c2
;
if
(
!
count
)
return
0
;
do
{
c1
=
*
str1
++
;
if
(
c1
>=
'A'
&&
c1
<=
'Z'
)
c1
+=
'a'
-
'A'
;
c2
=
*
str2
++
;
if
(
c2
>=
'A'
&&
c2
<=
'Z'
)
c2
+=
'a'
-
'A'
;
}
while
(
--
count
&&
c1
&&
(
c1
==
c2
));
return
c1
-
c2
;
}
return
CompareStringW
(
locinfo
->
lc_handle
[
MSVCRT_LC_COLLATE
],
NORM_IGNORECASE
,
str1
,
MSVCRT_wcsnlen
(
str1
,
count
),
str2
,
MSVCRT_wcsnlen
(
str2
,
count
))
-
CSTR_EQUAL
;
...
...
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