Skip to content

Commit 9f8e6cd

Browse files
authored
Possible crash fix for libcef(0x3705563) (#2849)
1 parent 7e22317 commit 9f8e6cd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Client/cefweb/CWebApp.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ void CWebApp::OnBeforeCommandLineProcessing(const CefString& process_type, CefRe
3232
// command_line->AppendSwitch("disable-d3d11");
3333
command_line->AppendSwitch("enable-begin-frame-scheduling");
3434

35+
// browser-signin switch(or lack thereof) produces crashes when GOOGLE API keys are present in the OS registry
36+
command_line->AppendSwitchWithValue("allow-browser-signin", "false");
37+
3538
if (process_type.empty())
3639
{
3740
command_line->AppendSwitchWithValue("autoplay-policy", "no-user-gesture-required");

0 commit comments

Comments
 (0)