Commit f695cb6d authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3: Avoid shadowing a function parameter.

parent 76e35a29
......@@ -2817,13 +2817,13 @@ static ULONG WINAPI saxxmlreader_Release(
for (i = 0; i < SAXHandler_Last; i++)
{
struct saxanyhandler_iface *iface = &This->saxhandlers[i].u.anyhandler;
struct saxanyhandler_iface *saxiface = &This->saxhandlers[i].u.anyhandler;
if (iface->handler)
IUnknown_Release(iface->handler);
if (saxiface->handler)
IUnknown_Release(saxiface->handler);
if (iface->vbhandler)
IUnknown_Release(iface->vbhandler);
if (saxiface->vbhandler)
IUnknown_Release(saxiface->vbhandler);
}
SysFreeString(This->xmldecl_version);
......
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