From 650feb0380fa0fbe76262d3da04eaa44fd229c13 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 28 Feb 2011 13:13:59 +0100 Subject: [PATCH] mshtml: Fixed memory leak. --- dlls/mshtml/htmlform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/mshtml/htmlform.c b/dlls/mshtml/htmlform.c index 0f77d28cb14..e53dbc07707 100644 --- a/dlls/mshtml/htmlform.c +++ b/dlls/mshtml/htmlform.c @@ -174,6 +174,7 @@ static HRESULT WINAPI HTMLFormElement_get_action(IHTMLFormElement *iface, BSTR * hres = E_FAIL; } + nsAString_Finish(&action_str); return hres; }