oleaut32: Added SAFEARRAY support for RecordInfo::RecordClear.

This commit is contained in:
Nikolay Sivov 2008-12-07 14:43:25 +03:00 committed by Alexandre Julliard
parent 4d557bccc1
commit f5e59b43f7
1 changed files with 3 additions and 0 deletions

View File

@ -236,6 +236,9 @@ static HRESULT WINAPI IRecordInfoImpl_RecordClear(IRecordInfo *iface, PVOID pvEx
case VT_UINT_PTR:
*(void**)var = NULL;
break;
case VT_SAFEARRAY:
SafeArrayDestroy((SAFEARRAY*)var);
break;
default:
FIXME("Not supported vt = %d\n", This->fields[i].vt);
break;