Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
232255f3
Commit
232255f3
authored
Apr 04, 2019
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Don't use strcasecmp.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
718b07b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pidl.c
dlls/shell32/pidl.c
+3
-3
No files found.
dlls/shell32/pidl.c
View file @
232255f3
...
...
@@ -511,7 +511,7 @@ BOOL WINAPI ILIsEqual(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
_ILSimpleGetText
(
pidltemp1
,
szData1
,
MAX_PATH
);
_ILSimpleGetText
(
pidltemp2
,
szData2
,
MAX_PATH
);
if
(
strcasecmp
(
szData1
,
szData2
))
if
(
lstrcmpiA
(
szData1
,
szData2
))
return
FALSE
;
pidltemp1
=
ILGetNext
(
pidltemp1
);
...
...
@@ -563,7 +563,7 @@ BOOL WINAPI ILIsParent(LPCITEMIDLIST pidlParent, LPCITEMIDLIST pidlChild, BOOL b
_ILSimpleGetText
(
pParent
,
szData1
,
MAX_PATH
);
_ILSimpleGetText
(
pChild
,
szData2
,
MAX_PATH
);
if
(
strcasecmp
(
szData1
,
szData2
))
if
(
lstrcmpiA
(
szData1
,
szData2
))
return
FALSE
;
pParent
=
ILGetNext
(
pParent
);
...
...
@@ -630,7 +630,7 @@ LPITEMIDLIST WINAPI ILFindChild(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
_ILSimpleGetText
(
pidltemp1
,
szData1
,
MAX_PATH
);
_ILSimpleGetText
(
pidltemp2
,
szData2
,
MAX_PATH
);
if
(
strcasecmp
(
szData1
,
szData2
))
if
(
lstrcmpiA
(
szData1
,
szData2
))
break
;
pidltemp1
=
ILGetNext
(
pidltemp1
);
...
...
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