>From acb4075b77a2549d5d7c3a73f707da9644ed83e6 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Tue, 20 Dec 2011 14:49:57 +1100 Subject: [PATCH] Dont double free ObjectWithSite interface To: wine-patches --- dlls/jscript/activex.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/dlls/jscript/activex.c b/dlls/jscript/activex.c index c1f556b..41e2065 100644 --- a/dlls/jscript/activex.c +++ b/dlls/jscript/activex.c @@ -130,7 +130,6 @@ static IUnknown *create_activex_object(script_ctx_t *ctx, const WCHAR *progid) } IObjectWithSite_Release(obj_site); if(!ax_site || FAILED(hres)) { - IObjectWithSite_Release(obj_site); IUnknown_Release(obj); return NULL; } -- 1.7.5.4