Re: Random crashes on 76.1.13
Posted: Sat Sep 28, 2019 5:03 pm
You can also disable the images for one browser by setting TChromium.Options.ImageLoading to STATE_DISABLED before calling TChromium.CreateBrowser.
The forum for BriskBard users and CEF4Delphi / WebView4Delphi / WebUI4Delphi / WebUI4CSharp developers
http://www.briskbard.com/forum/
Actively used only here this procedure and function.Имя события проблемы: APPCRASH
****
Отметка времени приложения: 5d944f12
Имя модуля с ошибкой: libcef.dll
Версия модуля с ошибкой: 76.1.13.0
Отметка времени модуля с ошибкой: 5d5f72d0
Код исключения: c0000005
Смещение исключения: 00000000029ddb25
Версия ОС: 6.3.9600.2.0.0.272.7
Код языка: 1049
Дополнительные сведения 1: 6a5d
Дополнительные сведения 2: 6a5dc100fc8bc4937422858f3ea7f4d6
Дополнительные сведения 3: d99e
Дополнительные сведения 4: d99e6ea7c98e99ec954f04cd3f202fdf
Code: Select all
GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors';
What exactly would be the effect of the line above, please ?salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :Code: Select all
GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors';
+1 for some bug in the last versions...dilfich wrote: Fri Oct 04, 2019 6:21 pm Still, apparently this is a bug. Tried different versions up to 75, same thing. ((
In General, rolled back to 70.0.3538.102, the most stable yet + you can clean the cache.
Chromium 75 enabled a new feature called "Network service" by default and it caused some issues. All demos since then add that line to disable that service.thefunkyjoint wrote: Fri Oct 04, 2019 5:52 pmWhat exactly would be the effect of the line above, please ?salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :Code: Select all
GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors';
Thanks for the info, i did not try the 77 beta yet.salvadordf wrote: Fri Oct 04, 2019 7:14 pmChromium 75 enabled a new feature called "Network service" by default and it caused some issues. All demos since then add that line to disable that service.thefunkyjoint wrote: Fri Oct 04, 2019 5:52 pmWhat exactly would be the effect of the line above, please ?salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :Code: Select all
GlobalCEFApp.DisableFeatures := 'NetworkService,OutOfBlinkCors';
Chromium 77 removed the possibility of disabling that feature and now we have issues when you close the demos.