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
a360c981
Commit
a360c981
authored
Mar 03, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Mar 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix localized date and time parsing.
parent
71f24431
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
vartype.c
dlls/oleaut32/tests/vartype.c
+1
-1
vartype.c
dlls/oleaut32/vartype.c
+7
-0
No files found.
dlls/oleaut32/tests/vartype.c
View file @
a360c981
...
...
@@ -3439,7 +3439,7 @@ static void test_VarDateFromStr(void)
DFS
(
"02.01.1970 00:00:00"
);
EXPECT_MISMATCH
;
lcid
=
MAKELCID
(
MAKELANGID
(
LANG_GERMAN
,
SUBLANG_GERMAN
),
SORT_DEFAULT
);
DFS
(
"02.01.1970"
);
EXPECT_DBL
(
25570
.
0
);
DFS
(
"02.01.1970 00:00:00"
);
todo_wine
EXPECT_DBL
(
25570
.
0
);
DFS
(
"02.01.1970 00:00:00"
);
EXPECT_DBL
(
25570
.
0
);
}
static
void
test_VarDateCopy
(
void
)
...
...
dlls/oleaut32/vartype.c
View file @
a360c981
...
...
@@ -7707,6 +7707,13 @@ HRESULT WINAPI VarDateFromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, DATE* pd
dp
.
dwCount
-=
3
;
break
;
case
0x1B
:
/* localized DDDTTT */
if
(
!
iDate
)
{
hRet
=
DISP_E_TYPEMISMATCH
;
break
;
}
/* .. fall through .. */
case
0x18
:
/* DDDTTT */
if
((
dp
.
dwFlags
[
0
]
&
(
DP_AM
|
DP_PM
))
||
(
dp
.
dwFlags
[
1
]
&
(
DP_AM
|
DP_PM
))
||
(
dp
.
dwFlags
[
2
]
&
(
DP_AM
|
DP_PM
)))
...
...
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