David

Results 7 comments of David

No exception is thrown app just crash. From event viewer. Faulting application name: Host.exe, version: 1.0.0.0, time stamp: 0x650ea3ea Faulting module name: 3F929562B0A1EF11.DLL, version: 0.0.0.0, time stamp: 0x650e2dbc Exception code:...

WinDbg (c48.7adc): Access violation - code c0000005 (first chance) First chance exceptions are reported before any exception handling. This exception may be expected and handled. 00000297`b0fa82fa 48032cc8 add rbp,qword ptr...

I make a simple test plugin.dll that creates a new thread and prints "Hello World!" in console after printing app crash with Access violation - code c0000005 I think that...

I can confirm that issue is fixed. Can you add crypto wallet address into readme for donations?

Second round. Steps. 1. Load dll. 2. Call dll method. 3. App crashed. I think app is crashed on method return.

exception ``` Exception thrown at 0x0000022A85E7E140 in test.exe: 0xC0000005: Access violation executing location 0x0000022A85E7E140. ``` repro [test.zip](https://github.com/bb107/MemoryModulePP/files/12729960/test.zip) ``` pfn = GetProcAddress(hModule, "thread"); if (pfn && pfn()) { printf("thread test failed.\n");...

App is crashed before `FreeLibraryMemory` is called. After dll's method is called and **on return** application crashes.