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
ec650d88
Commit
ec650d88
authored
Feb 22, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 22, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Use charmax to initialize lconv fields.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7b0a58f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
locale.c
dlls/msvcrt/locale.c
+8
-8
No files found.
dlls/msvcrt/locale.c
View file @
ec650d88
...
...
@@ -1342,14 +1342,14 @@ static MSVCRT_pthreadlocinfo create_locinfo(int category,
locinfo
->
lconv
->
mon_grouping
[
0
]
=
'\0'
;
locinfo
->
lconv
->
positive_sign
[
0
]
=
'\0'
;
locinfo
->
lconv
->
negative_sign
[
0
]
=
'\0'
;
locinfo
->
lconv
->
int_frac_digits
=
127
;
locinfo
->
lconv
->
frac_digits
=
127
;
locinfo
->
lconv
->
p_cs_precedes
=
127
;
locinfo
->
lconv
->
p_sep_by_space
=
127
;
locinfo
->
lconv
->
n_cs_precedes
=
127
;
locinfo
->
lconv
->
n_sep_by_space
=
127
;
locinfo
->
lconv
->
p_sign_posn
=
127
;
locinfo
->
lconv
->
n_sign_posn
=
127
;
locinfo
->
lconv
->
int_frac_digits
=
charmax
;
locinfo
->
lconv
->
frac_digits
=
charmax
;
locinfo
->
lconv
->
p_cs_precedes
=
charmax
;
locinfo
->
lconv
->
p_sep_by_space
=
charmax
;
locinfo
->
lconv
->
n_cs_precedes
=
charmax
;
locinfo
->
lconv
->
n_sep_by_space
=
charmax
;
locinfo
->
lconv
->
p_sign_posn
=
charmax
;
locinfo
->
lconv
->
n_sign_posn
=
charmax
;
#if _MSVCR_VER >= 100
locinfo
->
lconv
->
_W_int_curr_symbol
=
MSVCRT_malloc
(
sizeof
(
MSVCRT_wchar_t
));
...
...
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