From 92ff4bb7c2b449235b7a6d42b939e83d63fe0168 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 13 Mar 2010 16:42:25 +0100 Subject: [PATCH] mshtml: Fixed ref count leak. --- dlls/mshtml/persist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c index 720a58edbf8..6aca13fcceb 100644 --- a/dlls/mshtml/persist.c +++ b/dlls/mshtml/persist.c @@ -108,6 +108,7 @@ static void set_progress_proc(task_t *_task) V_I4(&progress) = 0; /* FIXME */ IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETPROGRESSPOS, OLECMDEXECOPT_DONTPROMPTUSER, &progress, NULL); + IOleCommandTarget_Release(olecmd); } if(doc->usermode == EDITMODE && doc->hostui) { -- 2.11.4.GIT