diff options
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index 8bacd59..792d0ad 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -545,7 +545,9 @@ int ChromeMain(int argc, const char** argv) { *CommandLine::ForCurrentProcess(); MainFunctionParams main_params(parsed_command_line, sandbox_wrapper, &autorelease_pool); - RendererMain(main_params); + rv = RendererMain(main_params); + } else { + rv = 0; } #else NOTIMPLEMENTED(); |