msxml3: Avoid shadowing a function parameter.
This commit is contained in:
parent
76e35a2939
commit
f695cb6da1
|
@ -2817,13 +2817,13 @@ static ULONG WINAPI saxxmlreader_Release(
|
||||||
|
|
||||||
for (i = 0; i < SAXHandler_Last; i++)
|
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)
|
if (saxiface->handler)
|
||||||
IUnknown_Release(iface->handler);
|
IUnknown_Release(saxiface->handler);
|
||||||
|
|
||||||
if (iface->vbhandler)
|
if (saxiface->vbhandler)
|
||||||
IUnknown_Release(iface->vbhandler);
|
IUnknown_Release(saxiface->vbhandler);
|
||||||
}
|
}
|
||||||
|
|
||||||
SysFreeString(This->xmldecl_version);
|
SysFreeString(This->xmldecl_version);
|
||||||
|
|
Loading…
Reference in New Issue