Page 1 of 1
Crash on KERNELBASE.dll
Posted: Fri Jun 21, 2024 10:39 am
by bobpang
when i open many browsers at the same time, Assign a jgp file into Clipboard ,then we run Chromium1.ClipboardPaste to upload this jpg file.
It will easily lead to system crashes. is that run out of RAM or Windows runs out of resources ?
Is there a solution to this problem?
thank you
Re: Crash on KERNELBASE.dll
Posted: Fri Jun 21, 2024 12:20 pm
by salvadordf
Hi,
32 bits apps for Windows require setting the IMAGE_FILE_LARGE_ADDRESS_AWARE flag in order to use up to 3GB of RAM.
https://github.com/salvadordf/CEF4Delphi/blob/e1d6fbaff9a506dc8cc8e5423447c4a1fb5226d5/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2.dpr#L20
Additionally, if you use CEF4Delphi 126 you may see a crash while navigating due to a dangling pointer issue :
https://github.com/salvadordf/CEF4Delphi/issues/518
https://github.com/chromiumembedded/cef/issues/3717
If you use Linux, there's a known clipboard issue too :
https://github.com/chromiumembedded/cef/issues/3117
Re: Crash on KERNELBASE.dll
Posted: Sat Jun 22, 2024 12:07 am
by bobpang
thank you