msado15: Show fixme only if field_list needs to be used in Recordset::AddNew.

This commit is contained in:
Alistair Leslie-Hughes 2023-10-04 16:55:11 +11:00 committed by Alexandre Julliard
parent 8a4e235efc
commit 77b506709a

View file

@ -1582,7 +1582,8 @@ static HRESULT WINAPI recordset_AddNew( _Recordset *iface, VARIANT field_list, V
struct recordset *recordset = impl_from_Recordset( iface );
TRACE( "%p, %s, %s\n", recordset, debugstr_variant(&field_list), debugstr_variant(&values) );
FIXME( "ignoring field list and values\n" );
if (V_VT(&field_list) != VT_ERROR)
FIXME( "ignoring field list and values\n" );
if (recordset->state == adStateClosed) return MAKE_ADO_HRESULT( adErrObjectClosed );