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
7e08a24f
Commit
7e08a24f
authored
Nov 05, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Nov 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed FMT_DATE_GENERAL and FMT_DATE_TIME_SYS cases in
VARIANT_FormatDate.
parent
0e3a3555
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
varformat.c
dlls/oleaut32/varformat.c
+6
-4
No files found.
dlls/oleaut32/varformat.c
View file @
7e08a24f
...
...
@@ -1598,10 +1598,11 @@ static HRESULT VARIANT_FormatDate(LPVARIANT pVarIn, LPOLESTR lpszFormat,
case
FMT_DATE_GENERAL
:
{
BSTR
date
=
NULL
;
WCHAR
*
pDate
=
date
;
hRes
=
VarBstrFromDate
(
V_DATE
(
&
vDate
),
lcid
,
0
,
pbstrOut
);
WCHAR
*
pDate
;
hRes
=
VarBstrFromDate
(
V_DATE
(
&
vDate
),
lcid
,
0
,
&
date
);
if
(
FAILED
(
hRes
))
goto
VARIANT_FormatDate_Exit
;
pDate
=
date
;
while
(
*
pDate
)
*
pBuff
++
=
*
pDate
++
;
SysFreeString
(
date
);
...
...
@@ -1623,10 +1624,11 @@ static HRESULT VARIANT_FormatDate(LPVARIANT pVarIn, LPOLESTR lpszFormat,
{
/* FIXME: VARIANT_CALENDAR HIJRI should cause Hijri output */
BSTR
date
=
NULL
;
WCHAR
*
pDate
=
date
;
hRes
=
VarBstrFromDate
(
V_DATE
(
&
vDate
),
lcid
,
VAR_TIMEVALUEONLY
,
pbstrOut
);
WCHAR
*
pDate
;
hRes
=
VarBstrFromDate
(
V_DATE
(
&
vDate
),
lcid
,
VAR_TIMEVALUEONLY
,
&
date
);
if
(
FAILED
(
hRes
))
goto
VARIANT_FormatDate_Exit
;
pDate
=
date
;
while
(
*
pDate
)
*
pBuff
++
=
*
pDate
++
;
SysFreeString
(
date
);
...
...
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