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
89312f9d
Commit
89312f9d
authored
May 20, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Support DBSTATUS_S_ISNULL when converting to VARIANT.
parent
70af1dd0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
convert.c
dlls/oledb32/convert.c
+7
-0
convert.c
dlls/oledb32/tests/convert.c
+8
-0
No files found.
dlls/oledb32/convert.c
View file @
89312f9d
...
...
@@ -789,6 +789,13 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
{
VARIANT
*
v
=
dst
;
if
(
src_status
==
DBSTATUS_S_ISNULL
)
{
*
dst_status
=
DBSTATUS_S_ISNULL
;
*
dst_len
=
0
;
return
S_OK
;
}
switch
(
src_type
)
{
case
DBTYPE_BOOL
:
...
...
dlls/oledb32/tests/convert.c
View file @
89312f9d
...
...
@@ -2601,6 +2601,14 @@ static void test_converttovar(void)
ok
(
dst_len
==
sizeof
(
dst
),
"got %ld
\n
"
,
dst_len
);
ok
(
V_VT
(
&
dst
)
==
VT_DATE
,
"got %d
\n
"
,
V_VT
(
&
dst
));
ok
(
(
float
)
V_DATE
(
&
dst
)
==
41409
.
0
,
"got %f
\n
"
,
V_DATE
(
&
dst
));
/* src_status = DBSTATUS_S_ISNULL */
i4
=
123
;
hr
=
IDataConvert_DataConvert
(
convert
,
DBTYPE_I4
,
DBTYPE_VARIANT
,
sizeof
(
i4
),
&
dst_len
,
&
i4
,
&
dst
,
sizeof
(
dst
),
DBSTATUS_S_ISNULL
,
&
dst_status
,
0
,
0
,
0
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
dst_status
==
DBSTATUS_S_ISNULL
,
"got %08x
\n
"
,
dst_status
);
ok
(
dst_len
==
0
,
"got %ld
\n
"
,
dst_len
);
}
static
void
test_converttotimestamp
(
void
)
...
...
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