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
8e4f283e
Commit
8e4f283e
authored
Dec 03, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/lcformat: Don't use uneeded string conversion.
parent
1a260918
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
lcformat.c
dlls/kernel32/lcformat.c
+2
-3
No files found.
dlls/kernel32/lcformat.c
View file @
8e4f283e
...
...
@@ -470,7 +470,6 @@ static INT NLS_GetDateTimeFormatW(LCID lcid, DWORD dwFlags,
else
if
((
dwFlags
&
DATE_DATEVARSONLY
&&
IsDateFmtChar
(
*
lpFormat
))
||
(
dwFlags
&
TIME_TIMEVARSONLY
&&
IsTimeFmtChar
(
*
lpFormat
)))
{
char
buffA
[
32
];
WCHAR
buff
[
32
],
fmtChar
;
LPCWSTR
szAdd
=
NULL
;
DWORD
dwVal
=
0
;
...
...
@@ -604,9 +603,9 @@ static INT NLS_GetDateTimeFormatW(LCID lcid, DWORD dwFlags,
if
(
szAdd
==
buff
&&
buff
[
0
]
==
'\0'
)
{
static
const
WCHAR
fmtW
[]
=
{
'%'
,
'.'
,
'*'
,
'd'
,
0
};
/* We have a numeric value to add */
sprintf
(
buffA
,
"%.*d"
,
count
,
dwVal
);
MultiByteToWideChar
(
CP_ACP
,
0
,
buffA
,
-
1
,
buff
,
sizeof
(
buff
)
/
sizeof
(
WCHAR
));
snprintfW
(
buff
,
sizeof
(
buff
)
/
sizeof
(
WCHAR
),
fmtW
,
count
,
dwVal
);
}
dwLen
=
szAdd
?
strlenW
(
szAdd
)
:
0
;
...
...
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