msxml3: Avoid shadowing a function parameter.

This commit is contained in:
Michael Stefaniuc 2013-09-03 09:50:00 +02:00 committed by Alexandre Julliard
parent 76e35a2939
commit f695cb6da1
1 changed files with 5 additions and 5 deletions

View File

@ -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);