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
cf36ddd6
Commit
cf36ddd6
authored
Nov 18, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp: Don't cast zero.
parent
0569947d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
locale.c
dlls/msvcp100/locale.c
+1
-1
locale.c
dlls/msvcp71/locale.c
+1
-1
locale.c
dlls/msvcp90/locale.c
+1
-1
No files found.
dlls/msvcp100/locale.c
View file @
cf36ddd6
...
...
@@ -3824,7 +3824,7 @@ static int num_get__Getffld(const num_get *this, char *dest, istreambuf_iterator
numpunct_wchar_grouping
(
numpunct
,
&
grouping_bstr
);
grouping
=
MSVCP_basic_string_char_c_str
(
&
grouping_bstr
);
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
(
wchar_t
)
0
;
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
0
;
if
(
sep
)
MSVCP_basic_string_char_ctor
(
&
groups_found
);
...
...
dlls/msvcp71/locale.c
View file @
cf36ddd6
...
...
@@ -4242,7 +4242,7 @@ static int num_get__Getffld(const num_get *this, char *dest, istreambuf_iterator
numpunct_wchar_grouping
(
numpunct
,
&
grouping_bstr
);
grouping
=
MSVCP_basic_string_char_c_str
(
&
grouping_bstr
);
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
(
wchar_t
)
0
;
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
0
;
if
(
sep
)
MSVCP_basic_string_char_ctor
(
&
groups_found
);
...
...
dlls/msvcp90/locale.c
View file @
cf36ddd6
...
...
@@ -4424,7 +4424,7 @@ static int num_get__Getffld(const num_get *this, char *dest, istreambuf_iterator
numpunct_wchar_grouping
(
numpunct
,
&
grouping_bstr
);
grouping
=
MSVCP_basic_string_char_c_str
(
&
grouping_bstr
);
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
(
wchar_t
)
0
;
sep
=
grouping
[
0
]
?
numpunct_wchar_thousands_sep
(
numpunct
)
:
0
;
if
(
sep
)
MSVCP_basic_string_char_ctor
(
&
groups_found
);
...
...
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