Skip to content

Instantly share code, notes, and snippets.

@campersau
Created February 8, 2016 11:07
Show Gist options
  • Save campersau/ba64cf30b10e08077b6c to your computer and use it in GitHub Desktop.
Save campersau/ba64cf30b10e08077b6c to your computer and use it in GitHub Desktop.
CefSharp.OffScreen.ChromiumWebBrowser Parallel Screenshot Crash
System.AccessViolationException ist aufgetreten.
HResult=-2147467261
Message=Es wurde versucht, im geschützten Speicher zu lesen oder zu schreiben. Dies ist häufig ein Hinweis darauf, dass anderer Speicher beschädigt ist.
Source=CefSharp.Core
StackTrace:
bei CefSharp.Internals.CefSharpBrowserWrapper.CloseBrowser(Boolean forceClose)
InnerException:
Callstack:
CefSharp.Core.dll!CefSharp.Internals.CefSharpBrowserWrapper.CloseBrowser(bool forceClose) Unbekannt
CefSharp.Core.dll!CefSharp.ManagedCefBrowserAdapter.~ManagedCefBrowserAdapter() Unbekannt
CefSharp.Core.dll!CefSharp.ManagedCefBrowserAdapter.Dispose(bool A_0) Unbekannt
CefSharp.OffScreen.dll!CefSharp.OffScreen.ChromiumWebBrowser.Dispose(bool disposing) Unbekannt
CefSharp.OffScreen.dll!CefSharp.OffScreen.ChromiumWebBrowser.Dispose() Unbekannt
> CefSharp.Offscreen.ScreenshotTest.exe!CefSharp.Offscreen.ScreenshotTest.Program.CreateImage(string html, System.Drawing.Size size) Zeile 96 C#
[Wiederaufnehmen der asynchronen Methode]
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unbekannt
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unbekannt
mscorlib.dll!System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.Run() Unbekannt
mscorlib.dll!System.Runtime.CompilerServices.AsyncMethodBuilderCore.OutputAsyncCausalityEvents.AnonymousMethod__0() Unbekannt
mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.OutputWaitEtwEvents.AnonymousMethod__0() Unbekannt
mscorlib.dll!System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(System.Action action, bool allowInlining, ref System.Threading.Tasks.Task currentTask) Unbekannt
mscorlib.dll!System.Threading.Tasks.Task.FinishContinuations() Unbekannt
mscorlib.dll!System.Threading.Tasks.Task<System.__Canon>.TrySetResult(System.__Canon result) Unbekannt
mscorlib.dll!System.Threading.Tasks.TaskCompletionSource<System.__Canon>.TrySetResult(System.__Canon result) Unbekannt
mscorlib.dll!System.Threading.Tasks.TaskCompletionSource<System.__Canon>.SetResult(System.__Canon result) Unbekannt
CefSharp.OffScreen.dll!CefSharp.OffScreen.ChromiumWebBrowser.InvokeRenderAsync(CefSharp.Internals.BitmapInfo bitmapInfo) Unbekannt
CefSharp.Core.dll!<Module>.CefSharp.Internals.RenderClientAdapter.OnPaint(CefSharp.Internals.RenderClientAdapter* value, browser, type, dirtyRects, buffer, width, height) Unbekannt
[Asynchroner Aufruf]
CefSharp.Offscreen.ScreenshotTest.exe!CefSharp.Offscreen.ScreenshotTest.Program.Run.AnonymousMethod__1() Zeile 39 C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CefSharp.OffScreen;
using System.Drawing;
using System.Drawing.Imaging;
namespace CefSharp.Offscreen.ScreenshotTest
{
class Program
{
static Program()
{
var settings = new CefSettings();
settings.MultiThreadedMessageLoop = true;
settings.WindowlessRenderingEnabled = true;
if (!Cef.Initialize(settings))
{
Console.WriteLine("Failed to initialize Cef");
}
}
static void Main(string[] args)
{
Run();
Console.ReadKey();
}
static async Task Run()
{
Size size = new Size(100, 100);
IEnumerable<Task> tasks = Enumerable.Range(0, 10).Select(i =>
{
return Task.Run(async () =>
{
Console.WriteLine("Create image: " + i);
Bitmap image = await CreateImage("<!doctype html><html><head></head><body>" + i + "</body></html>", size);
Console.WriteLine("Finished image: " + i);
return image;
}).ContinueWith(SaveImage);
});
await Task.WhenAll(tasks);
}
static async Task<Bitmap> CreateImage(string html, Size size)
{
var settings = new BrowserSettings();
settings.WindowlessFrameRate = 1;
using (var chromium = new ChromiumWebBrowser(browserSettings: settings))
{
chromium.Size = size;
var tcs = new TaskCompletionSource<bool>();
EventHandler<LoadingStateChangedEventArgs> loadingHandler = null;
loadingHandler = new EventHandler<LoadingStateChangedEventArgs>((object sender, LoadingStateChangedEventArgs e) =>
{
if (!e.IsLoading)
{
chromium.LoadingStateChanged -= loadingHandler;
tcs.TrySetResult(true);
}
});
chromium.LoadingStateChanged += loadingHandler;
EventHandler initializedHandler = null;
initializedHandler = new EventHandler((object sender, EventArgs e) =>
{
chromium.BrowserInitialized -= initializedHandler;
chromium.SetZoomLevel(0.0);
chromium.LoadHtml(html, "http://localhost");
});
if (!chromium.IsBrowserInitialized)
{
chromium.BrowserInitialized += initializedHandler;
}
else
{
initializedHandler(chromium, EventArgs.Empty);
}
await tcs.Task;
return await chromium.ScreenshotAsync();
}
}
static void SaveImage(Task<Bitmap> image)
{
string filename = Guid.NewGuid().ToString("N") + ".png";
image.Result.Save(".\\" + filename, ImageFormat.Png);
}
}
}
CommandLine: P:\CefSharp.Offscreen.ScreenshotTest\bin\x64\Debug\CefSharp.Offscreen.ScreenshotTest.exe
************* Symbol Path validation summary **************
Response Time (ms) Location
Deferred srv*
Symbol search path is: srv*
Executable search path is:
ModLoad: 000002d9`9f360000 000002d9`9f368000 CefSharp.Offscreen.ScreenshotTest.exe
ModLoad: 00007ffe`946f0000 00007ffe`948b1000 ntdll.dll
ModLoad: 00007ffe`81a40000 00007ffe`81aa8000 C:\WINDOWS\SYSTEM32\MSCOREE.DLL
ModLoad: 00007ffe`93c80000 00007ffe`93d2d000 C:\WINDOWS\system32\KERNEL32.dll
ModLoad: 00007ffe`911e0000 00007ffe`913c8000 C:\WINDOWS\system32\KERNELBASE.dll
ModLoad: 00007ffe`8ef60000 00007ffe`8efd9000 C:\WINDOWS\system32\apphelp.dll
(4a7c.659c): Break instruction exception - code 80000003 (first chance)
ntdll!LdrpDoDebuggerBreak+0x30:
00007ffe`947ba920 cc int 3
0:000> g
ModLoad: 00007ffe`93bc0000 00007ffe`93c67000 C:\WINDOWS\system32\ADVAPI32.dll
ModLoad: 00007ffe`92210000 00007ffe`922ad000 C:\WINDOWS\system32\msvcrt.dll
ModLoad: 00007ffe`93810000 00007ffe`9386b000 C:\WINDOWS\system32\sechost.dll
ModLoad: 00007ffe`92080000 00007ffe`9219c000 C:\WINDOWS\system32\RPCRT4.dll
ModLoad: 00007ffe`819a0000 00007ffe`81a38000 C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
ModLoad: 00007ffe`94150000 00007ffe`941a2000 C:\WINDOWS\system32\SHLWAPI.dll
ModLoad: 00007ffe`91e00000 00007ffe`9207d000 C:\WINDOWS\system32\combase.dll
ModLoad: 00007ffe`90da0000 00007ffe`90e0a000 C:\WINDOWS\system32\bcryptPrimitives.dll
ModLoad: 00007ffe`91b10000 00007ffe`91c96000 C:\WINDOWS\system32\GDI32.dll
ModLoad: 00007ffe`91ca0000 00007ffe`91df6000 C:\WINDOWS\system32\USER32.dll
ModLoad: 00007ffe`938e0000 00007ffe`9391b000 C:\WINDOWS\system32\IMM32.DLL
ModLoad: 00007ffe`90d90000 00007ffe`90d9f000 C:\WINDOWS\system32\kernel.appcore.dll
ModLoad: 00007ffe`895a0000 00007ffe`895aa000 C:\WINDOWS\SYSTEM32\VERSION.dll
ModLoad: 00007ffe`7f430000 00007ffe`7fdc0000 C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
ModLoad: 00007ffe`7f330000 00007ffe`7f427000 C:\WINDOWS\SYSTEM32\MSVCR120_CLR0400.dll
(4a7c.659c): Unknown exception - code 04242420 (first chance)
ModLoad: 00007ffe`60180000 00007ffe`61647000 C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\mscorlib\e407311405320c601b3800cccd2dcaae\mscorlib.ni.dll
ModLoad: 00007ffe`93e50000 00007ffe`93f93000 C:\WINDOWS\system32\ole32.dll
ModLoad: 00007ffe`81ae0000 00007ffe`81be5000 C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll
ModLoad: 00007ffe`93a80000 00007ffe`93b41000 C:\WINDOWS\system32\OLEAUT32.dll
ModLoad: 00007ffe`738d0000 00007ffe`73a33000 CefSharp.Core.dll
ModLoad: 000002d9`b9630000 000002d9`b9793000 CefSharp.Core.dll
ModLoad: 00007ffe`90690000 00007ffe`906a7000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
ModLoad: 00007ffe`90320000 00007ffe`90354000 C:\WINDOWS\system32\rsaenh.dll
ModLoad: 00007ffe`90c50000 00007ffe`90c79000 C:\WINDOWS\SYSTEM32\bcrypt.dll
ModLoad: 00007ffe`907b0000 00007ffe`907bb000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
ModLoad: 00007ffe`738d0000 00007ffe`73a33000 P:\CefSharp.Offscreen.ScreenshotTest\bin\x64\Debug\CefSharp.Core.dll
ModLoad: 00007ffe`75a20000 00007ffe`75ac6000 C:\WINDOWS\SYSTEM32\MSVCP120.dll
ModLoad: 00007ffe`753c0000 00007ffe`754af000 C:\WINDOWS\SYSTEM32\MSVCR120.dll
ModLoad: 00007ffe`44510000 00007ffe`488b4000 P:\CefSharp.Offscreen.ScreenshotTest\bin\x64\Debug\libcef.dll
ModLoad: 00007ffe`93c70000 00007ffe`93c78000 C:\WINDOWS\system32\PSAPI.DLL
ModLoad: 00007ffe`93d30000 00007ffe`93e3b000 C:\WINDOWS\system32\COMDLG32.dll
ModLoad: 00007ffe`8c710000 00007ffe`8c794000 C:\WINDOWS\SYSTEM32\WINSPOOL.DRV
ModLoad: 00007ffe`90f50000 00007ffe`91005000 C:\WINDOWS\system32\shcore.dll
ModLoad: 00007ffe`922b0000 00007ffe`9380f000 C:\WINDOWS\system32\SHELL32.dll
ModLoad: 00007ffe`88670000 00007ffe`888e4000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.10586.0_none_8c15ae12515e1c22\COMCTL32.dll
ModLoad: 00007ffe`90f00000 00007ffe`90f43000 C:\WINDOWS\system32\cfgmgr32.dll
ModLoad: 00007ffe`914a0000 00007ffe`91ae4000 C:\WINDOWS\system32\windows.storage.dll
ModLoad: 00007ffe`90d40000 00007ffe`90d8b000 C:\WINDOWS\system32\powrprof.dll
ModLoad: 00007ffe`90d20000 00007ffe`90d34000 C:\WINDOWS\system32\profapi.dll
ModLoad: 00007ffe`90e10000 00007ffe`90e96000 C:\WINDOWS\system32\FirewallAPI.dll
ModLoad: 00007ffe`913d0000 00007ffe`913e7000 C:\WINDOWS\system32\NETAPI32.dll
ModLoad: 00007ffe`93b50000 00007ffe`93bbb000 C:\WINDOWS\system32\WS2_32.dll
ModLoad: 00007ffe`8d3f0000 00007ffe`8d4b8000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
ModLoad: 00007ffe`90470000 00007ffe`9048f000 C:\WINDOWS\SYSTEM32\USERENV.dll
ModLoad: 00007ffe`91010000 00007ffe`911d7000 C:\WINDOWS\system32\CRYPT32.dll
ModLoad: 00007ffe`84f70000 00007ffe`85128000 C:\WINDOWS\SYSTEM32\urlmon.dll
ModLoad: 00007ffe`8c860000 00007ffe`8c87a000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
ModLoad: 00007ffe`921a0000 00007ffe`921a8000 C:\WINDOWS\system32\NSI.dll
ModLoad: 00007ffe`90d10000 00007ffe`90d20000 C:\WINDOWS\system32\MSASN1.dll
ModLoad: 00007ffe`8efe0000 00007ffe`8eff3000 C:\WINDOWS\SYSTEM32\WTSAPI32.dll
ModLoad: 00007ffe`8f060000 00007ffe`8f083000 C:\WINDOWS\SYSTEM32\WINMM.dll
ModLoad: 00007ffe`87e80000 00007ffe`87e8c000 C:\WINDOWS\SYSTEM32\DAVHLPR.DLL
ModLoad: 00007ffe`90250000 00007ffe`9025c000 C:\WINDOWS\SYSTEM32\Secur32.dll
ModLoad: 00007ffe`85580000 00007ffe`85903000 C:\WINDOWS\SYSTEM32\iertutil.dll
ModLoad: 00007ffe`8d520000 00007ffe`8d558000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
ModLoad: 00007ffe`88080000 00007ffe`880ea000 C:\WINDOWS\SYSTEM32\OLEACC.dll
ModLoad: 00007ffe`80ff0000 00007ffe`81008000 C:\WINDOWS\SYSTEM32\USP10.dll
ModLoad: 00007ffe`8f030000 00007ffe`8f05c000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
ModLoad: 00007ffe`90990000 00007ffe`909bd000 C:\WINDOWS\SYSTEM32\SSPICLI.DLL
ModLoad: 00007ffe`8f630000 00007ffe`8f662000 C:\WINDOWS\system32\fwbase.dll
ModLoad: 000002d9`9f660000 000002d9`9f688000 CefSharp.dll
ModLoad: 000002d9`9f6b0000 000002d9`9f6d8000 CefSharp.dll
ModLoad: 00007ffe`61bc0000 00007ffe`627d4000 C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System\ba0761dc062f63268ab1ec3a23ca9764\System.ni.dll
ModLoad: 00007ffe`5e900000 00007ffe`5f282000 C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Core\2bd89e89f8049b7dd4bc45136bf5015b\System.Core.ni.dll
ModLoad: 00007ffe`8f310000 00007ffe`8f3a6000 C:\WINDOWS\system32\uxtheme.dll
ModLoad: 00007ffe`8e0f0000 00007ffe`8e112000 C:\WINDOWS\system32\dwmapi.dll
ModLoad: 00007ffe`82cf0000 00007ffe`82f50000 C:\WINDOWS\SYSTEM32\dwrite.dll
ModLoad: 00007ffe`93920000 00007ffe`93a7a000 C:\WINDOWS\system32\MSCTF.dll
ModLoad: 00007ffe`8ec00000 00007ffe`8ec18000 C:\WINDOWS\system32\NLAapi.dll
ModLoad: 00007ffe`8c890000 00007ffe`8c8a6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
ModLoad: 00007ffe`725b0000 00007ffe`72638000 C:\WINDOWS\system32\audioses.dll
ModLoad: 00007ffe`8bed0000 00007ffe`8c006000 C:\WINDOWS\SYSTEM32\wintypes.dll
ModLoad: 00007ffe`8c4a0000 00007ffe`8c510000 C:\WINDOWS\system32\MMDevAPI.DLL
ModLoad: 00007ffe`901e0000 00007ffe`90207000 C:\WINDOWS\system32\DEVOBJ.dll
ModLoad: 00007ffe`8d050000 00007ffe`8d1d6000 C:\WINDOWS\system32\PROPSYS.dll
ModLoad: 00007ffe`94210000 00007ffe`942b7000 C:\WINDOWS\system32\clbcatq.dll
ModLoad: 00007ffe`942c0000 00007ffe`946e9000 C:\WINDOWS\system32\SETUPAPI.dll
ModLoad: 00007ffe`90ea0000 00007ffe`90ef5000 C:\WINDOWS\system32\WINTRUST.dll
ModLoad: 00007ffe`757d0000 00007ffe`759bb000 C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Drawing\18280ab048b50efa23e22b4e3623be01\System.Drawing.ni.dll
ModLoad: 000002d9`bb0e0000 000002d9`bb0ea000 CefSharp.OffScreen.dll
ModLoad: 000002d9`bb420000 000002d9`bb42a000 CefSharp.OffScreen.dll
ModLoad: 00007ffe`4b4d0000 00007ffe`4cc39000 C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.ServiceModel\95de3314634d0264234b32ac932eeefb\System.ServiceModel.ni.dll
ModLoad: 00007ffe`87ed0000 00007ffe`88078000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.10586.20_none_db007f1392e69ef4\gdiplus.dll
ModLoad: 000002d9`bb830000 000002d9`bb930000 image000002d9`bb830000
ModLoad: 000002d9`bb930000 000002d9`bba30000 image000002d9`bb930000
[0208/120003:WARNING:raw_channel_win.cc(532)] WriteFile: Die Pipe wird gerade geschlossen. (0xE8)
(4a7c.2d9c): CLR exception - code e0434352 (first chance)
(4a7c.2d9c): CLR exception - code e0434352 (first chance)
ModLoad: 000002d9`bb850000 000002d9`bb892000 image000002d9`bb850000
ModLoad: 000002d9`bb8a0000 000002d9`bb8e2000 image000002d9`bb8a0000
(4a7c.2d9c): CLR exception - code e0434352 (first chance)
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
*** WARNING: Unable to verify checksum for P:\CefSharp.Offscreen.ScreenshotTest\bin\x64\Debug\libcef.dll
*** ERROR: Symbol file could not be found. Defaulted to export symbols for P:\CefSharp.Offscreen.ScreenshotTest\bin\x64\Debug\libcef.dll -
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
HEAP[CefSharp.Offscreen.ScreenshotTest.exe]: HEAP: Free Heap block 000002D9BB43F370 modified at 000002D9BB43F4C8 after it was freed
(4a7c.7eb8): Break instruction exception - code 80000003 (first chance)
ntdll!RtlpBreakPointHeap+0x1d:
00007ffe`947dfab5 cc int 3
0:006> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (!!! second chance !!!)
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
0:007> g
(4a7c.5c4c): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
libcef!cef_time_to_timet+0xb7890:
00007ffe`446b66b0 8b01 mov eax,dword ptr [rcx] ds:feeefeee`feeefeee=????????
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment