mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
msxml3: Handle SafeArrayAccessData() failure in load() (Coverity).
This commit is contained in:
parent
27b7ff73e4
commit
cfe52abcf4
@ -2140,7 +2140,13 @@ static HRESULT WINAPI domdoc_load(
|
||||
case 1:
|
||||
/* Only takes UTF-8 strings.
|
||||
* NOT NULL-terminated. */
|
||||
SafeArrayAccessData(psa, (void**)&str);
|
||||
hr = SafeArrayAccessData(psa, (void**)&str);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
This->error = hr;
|
||||
WARN("failed to access array data, 0x%08x\n", hr);
|
||||
break;
|
||||
}
|
||||
SafeArrayGetUBound(psa, 1, &len);
|
||||
|
||||
if ((xmldoc = doparse(This, str, ++len, XML_CHAR_ENCODING_UTF8)))
|
||||
|
Loading…
Reference in New Issue
Block a user