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
31a7cad4
Commit
31a7cad4
authored
Dec 19, 2002
by
Alberto Massari
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CompareStringW should return 0 when one of the provided strings is a
NULL pointer.
parent
0ca46dc3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
ole2nls.c
ole/ole2nls.c
+5
-0
No files found.
ole/ole2nls.c
View file @
31a7cad4
...
@@ -1255,6 +1255,11 @@ int WINAPI CompareStringW(LCID lcid, DWORD fdwStyle,
...
@@ -1255,6 +1255,11 @@ int WINAPI CompareStringW(LCID lcid, DWORD fdwStyle,
if
(
fdwStyle
&
NORM_IGNORESYMBOLS
)
if
(
fdwStyle
&
NORM_IGNORESYMBOLS
)
FIXME
(
"IGNORESYMBOLS not supported
\n
"
);
FIXME
(
"IGNORESYMBOLS not supported
\n
"
);
if
(
s1
==
NULL
||
s2
==
NULL
)
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
0
;
}
/* Is strcmp defaulting to string sort or to word sort?? */
/* Is strcmp defaulting to string sort or to word sort?? */
/* FIXME: Handle NORM_STRINGSORT */
/* FIXME: Handle NORM_STRINGSORT */
l1
=
(
l1
==-
1
)
?
strlenW
(
s1
)
:
l1
;
l1
=
(
l1
==-
1
)
?
strlenW
(
s1
)
:
l1
;
...
...
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