oleaut32: Remove an unneeded error.

This commit is contained in:
André Hentschel 2011-02-09 18:51:49 +01:00 committed by Alexandre Julliard
parent 1e758c5e8c
commit ba6bdf9fd6
1 changed files with 0 additions and 3 deletions

View File

@ -1356,10 +1356,7 @@ HRESULT WINAPI SafeArrayCopy(SAFEARRAY *psa, SAFEARRAY **ppsaOut)
return S_OK; /* Handles copying of NULL arrays */
if (!psa->cbElements)
{
ERR("not copying an array of 0 elements\n");
return E_INVALIDARG;
}
if (psa->fFeatures & (FADF_RECORD|FADF_HAVEIID|FADF_HAVEVARTYPE))
{