From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- dlls/msado15/recordset.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/msado15/recordset.c b/dlls/msado15/recordset.c index aa2db6e2968..cc83d49d133 100644 --- a/dlls/msado15/recordset.c +++ b/dlls/msado15/recordset.c @@ -197,8 +197,10 @@ static HRESULT WINAPI field_get_Properties( Field *iface, Properties **obj )
static HRESULT WINAPI field_get_ActualSize( Field *iface, ADO_LONGPTR *size ) { - FIXME( "%p, %p\n", iface, size ); - return E_NOTIMPL; + struct field *field = impl_from_Field( iface ); + FIXME( "%p, %p\n", field, size ); + *size = 0; + return S_OK; }
static HRESULT WINAPI field_get_Attributes( Field *iface, LONG *attrs )