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
2d23512d
Commit
2d23512d
authored
Dec 04, 2019
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't depend on how __lc_time_data was allocated in _W_Getdays.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
66d70266
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
locale.c
dlls/msvcrt/locale.c
+5
-2
No files found.
dlls/msvcrt/locale.c
View file @
2d23512d
...
@@ -494,11 +494,14 @@ MSVCRT_wchar_t* CDECL _W_Getdays(void)
...
@@ -494,11 +494,14 @@ MSVCRT_wchar_t* CDECL _W_Getdays(void)
{
{
MSVCRT___lc_time_data
*
cur
=
get_locinfo
()
->
lc_time_curr
;
MSVCRT___lc_time_data
*
cur
=
get_locinfo
()
->
lc_time_curr
;
MSVCRT_wchar_t
*
out
;
MSVCRT_wchar_t
*
out
;
int
i
,
len
,
size
;
int
i
,
len
,
size
=
0
;
TRACE
(
"
\n
"
);
TRACE
(
"
\n
"
);
size
=
cur
->
wstr
.
names
.
short_mon
[
0
]
-
cur
->
wstr
.
names
.
short_wday
[
0
];
for
(
i
=
0
;
i
<
7
;
i
++
)
{
size
+=
strlenW
(
cur
->
wstr
.
names
.
short_wday
[
i
])
+
1
;
size
+=
strlenW
(
cur
->
wstr
.
names
.
wday
[
i
])
+
1
;
}
out
=
MSVCRT_malloc
((
size
+
1
)
*
sizeof
(
*
out
));
out
=
MSVCRT_malloc
((
size
+
1
)
*
sizeof
(
*
out
));
if
(
!
out
)
if
(
!
out
)
return
NULL
;
return
NULL
;
...
...
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