Commit 8cec3cf1 authored by Neil Skrypuch's avatar Neil Skrypuch Committed by Alexandre Julliard

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

parent b91a6298
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment