From 25b1d67231debb85b84a38d06bfc75fe03ec7929 Mon Sep 17 00:00:00 2001 From: Andrey Turkin Date: Fri, 20 Oct 2006 23:40:01 +0400 Subject: [PATCH] mshtml: Insert missing "return" operator. --- 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 5654148c592..cd4ff3bcce4 100644 --- a/dlls/mshtml/nsembed.c +++ b/dlls/mshtml/nsembed.c @@ -228,7 +228,7 @@ static BOOL load_mozctl(PRUnichar *gre_path) WCHAR *ptr; if((ptr = strrchrW(gre_path, '\\'))) ptr[1] = 0; - load_xpcom(gre_path); + return load_xpcom(gre_path); }else { ERR("Could not get value of %s\n", debugstr_w(wszMozCtlClsidKey)); }