Commit 979183e1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

opcservices: Add missing error check (Coverity).

parent 6cfda8bf
......@@ -1941,7 +1941,8 @@ static HRESULT opc_package_write_rels(struct zip_archive *archive, IOpcRelations
if (SUCCEEDED(hr))
hr = IXmlWriter_Flush(writer);
hr = IOpcUri_GetRelationshipsPartUri(uri, &rels_uri);
if (SUCCEEDED(hr))
hr = IOpcUri_GetRelationshipsPartUri(uri, &rels_uri);
if (SUCCEEDED(hr))
hr = IOpcPartUri_GetRawUri(rels_uri, &rels_part_uri);
if (SUCCEEDED(hr))
......
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