Skip to content
Snippets Groups Projects
Commit 8fbc1c1a authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard
Browse files

msado15: Return valid object in Recordset::Clone.


This is just to stop a crash when Clone is called.

Signed-off-by: default avatarAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent 1c4e53db
No related branches found
No related tags found
No related merge requests found
......@@ -1794,8 +1794,12 @@ static HRESULT WINAPI recordset_CompareBookmarks( _Recordset *iface, VARIANT boo
static HRESULT WINAPI recordset_Clone( _Recordset *iface, LockTypeEnum lock_type, _Recordset **obj )
{
FIXME( "%p, %d, %p\n", iface, lock_type, obj );
return E_NOTIMPL;
struct recordset *recordset = impl_from_Recordset( iface );
FIXME( "%p, %d, %p\n", recordset, lock_type, obj );
*obj = iface;
recordset_AddRef( iface );
return S_OK;
}
static HRESULT WINAPI recordset_Resync( _Recordset *iface, AffectEnum affect_records, ResyncEnum resync_values )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment