oleaut32: Adding a NULL to a safearray is supposed to crash.

This commit is contained in:
Neil Skrypuch 2006-07-23 12:25:52 -04:00 committed by Alexandre Julliard
parent b91a6298a7
commit 8cec3cf120
1 changed files with 0 additions and 6 deletions

View File

@ -843,12 +843,6 @@ HRESULT WINAPI SafeArrayPutElement(SAFEARRAY *psa, LONG *rgIndices, void *pvData
if (!psa || !rgIndices)
return E_INVALIDARG;
if (!pvData)
{
ERR("Invalid pvData would crash under Win32!\n");
return E_INVALIDARG;
}
hRet = SafeArrayLock(psa);
if (SUCCEEDED(hRet))