From cb1be040ea30eba40169e6f6908c88a09c65ddcd Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 1 Jul 2016 11:21:07 +0200 Subject: [PATCH] mshtml: Added missing release_dispex call in HTMLRect destructor. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/mshtml/htmlelem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c index b0834ee1ad8..74678226538 100644 --- a/dlls/mshtml/htmlelem.c +++ b/dlls/mshtml/htmlelem.c @@ -372,6 +372,7 @@ static ULONG WINAPI HTMLRect_Release(IHTMLRect *iface) if(!ref) { if(This->nsrect) nsIDOMClientRect_Release(This->nsrect); + release_dispex(&This->dispex); heap_free(This); }