Commit 5bfd2fc1 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msado15: _Recordset::Open store active connection parameter.

parent a1610861
......@@ -2071,6 +2071,10 @@ static HRESULT WINAPI recordset_Open( _Recordset *iface, VARIANT source, VARIANT
if (FAILED(hr))
return E_FAIL;
hr = VariantCopy(&recordset->active_connection, &active_connection);
if (FAILED(hr))
return E_FAIL;
if (V_VT(&source) != VT_BSTR)
{
FIXME("Unsupported source type!\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment