Commit c8572a5e authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

ole32: Use PropVariantInit instead of memset.

parent dd66a696
......@@ -1385,7 +1385,7 @@ static HRESULT PropertyStorage_ReadFromStream(PropertyStorage_impl *This)
{
PROPVARIANT prop;
memset(&prop, 0, sizeof prop);
PropVariantInit(&prop);
if (SUCCEEDED(PropertyStorage_ReadProperty(This, &prop,
buf + idOffset->dwOffset - sizeof(PROPERTYSECTIONHEADER))))
{
......
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