From a457249ff5c929e4442b7eeb1a3b3667de676109 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 21 Jan 2006 19:22:39 +0100 Subject: [PATCH] mshtml: Return FALSE if Mozilla ActiveX Control could not be found. --- dlls/mshtml/nsembed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/nsembed.c b/dlls/mshtml/nsembed.c index f409eaea9b5..c17319a564c 100644 --- a/dlls/mshtml/nsembed.c +++ b/dlls/mshtml/nsembed.c @@ -186,7 +186,7 @@ static BOOL get_mozctl_path(PRUnichar *gre_path) TRACE("Could not find Mozilla ActiveX Control\n"); - return TRUE; + return FALSE; } static BOOL get_wine_gecko_path(PRUnichar *gre_path)