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
bbf20dbb
Commit
bbf20dbb
authored
Jul 15, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't use isspaceW.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8d2a2c94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
wcs.c
dlls/msvcrt/wcs.c
+3
-3
No files found.
dlls/msvcrt/wcs.c
View file @
bbf20dbb
...
...
@@ -2333,7 +2333,7 @@ __int64 CDECL MSVCRT__wcstoi64_l(const MSVCRT_wchar_t *nptr,
if
(
endptr
)
*
endptr
=
(
MSVCRT_wchar_t
*
)
nptr
;
while
(
isspaceW
(
*
nptr
))
nptr
++
;
while
(
MSVCRT__iswspace_l
(
*
nptr
,
locale
))
nptr
++
;
if
(
*
nptr
==
'-'
)
{
negative
=
TRUE
;
...
...
@@ -2506,7 +2506,7 @@ unsigned __int64 CDECL MSVCRT__wcstoui64_l(const MSVCRT_wchar_t *nptr,
if
(
endptr
)
*
endptr
=
(
MSVCRT_wchar_t
*
)
nptr
;
while
(
isspaceW
(
*
nptr
))
nptr
++
;
while
(
MSVCRT__iswspace_l
(
*
nptr
,
locale
))
nptr
++
;
if
(
*
nptr
==
'-'
)
{
negative
=
TRUE
;
...
...
@@ -2675,7 +2675,7 @@ __int64 CDECL MSVCRT__wtoi64_l(const MSVCRT_wchar_t *str, MSVCRT__locale_t local
ULONGLONG
RunningTotal
=
0
;
BOOL
bMinus
=
FALSE
;
while
(
isspaceW
(
*
str
))
{
while
(
MSVCRT__iswspace_l
(
*
str
,
locale
))
{
str
++
;
}
/* while */
...
...
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