Browse Source

Fix oops on Windows / Linux.

Charlie Hess 8 years ago
parent
commit
cd25066c9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/browser/atom_browser_main_parts.cc

+ 1 - 1
atom/browser/atom_browser_main_parts.cc

@@ -157,7 +157,7 @@ void AtomBrowserMainParts::PreMainMessageLoopRun() {
   // The corresponding call in macOS is in AtomApplicationDelegate.
   Browser::Get()->WillFinishLaunching();
   base::DictionaryValue* empty_info = new base::DictionaryValue();
-  Browser::Get()->DidFinishLaunching(empty_info);
+  Browser::Get()->DidFinishLaunching(*empty_info);
 #endif
 }