Module: wine Branch: master Commit: 25b1d67231debb85b84a38d06bfc75fe03ec7929 URL: http://source.winehq.org/git/wine.git/?a=commit;h=25b1d67231debb85b84a38d06b...
Author: Andrey Turkin pancha@mail.nnov.ru Date: Fri Oct 20 23:40:01 2006 +0400
mshtml: Insert missing "return" operator.
---
dlls/mshtml/nsembed.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/nsembed.c b/dlls/mshtml/nsembed.c index 5654148..cd4ff3b 100644 --- a/dlls/mshtml/nsembed.c +++ b/dlls/mshtml/nsembed.c @@ -228,7 +228,7 @@ static BOOL load_mozctl(PRUnichar *gre_p 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)); }