mshtml: Added missing release_dispex call in HTMLRect destructor.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2016-07-01 11:21:07 +02:00 committed by Alexandre Julliard
parent d715fdf2c8
commit cb1be040ea
1 changed files with 1 additions and 0 deletions

View File

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