Commit 720c0c81 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed leak in fill_props.

parent 6b0f51f9
...@@ -288,7 +288,7 @@ static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag) ...@@ -288,7 +288,7 @@ static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag)
nsres = nsIDOMNodeList_GetLength(params, &length); nsres = nsIDOMNodeList_GetLength(params, &length);
if(NS_FAILED(nsres)) if(NS_FAILED(nsres))
return S_OK; length = 0;
for(i=0; i < length; i++) { for(i=0; i < length; i++) {
nsres = nsIDOMNodeList_Item(params, i, &nsnode); nsres = nsIDOMNodeList_Item(params, i, &nsnode);
...@@ -330,6 +330,7 @@ static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag) ...@@ -330,6 +330,7 @@ static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag)
} }
} }
nsIDOMNodeList_Release(params);
return hres; return hres;
} }
......
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