Crash madExcept_.bpl

delphi package - automated exception handling
Post Reply
MasterDi
Posts: 7
Joined: Thu Dec 17, 2020 9:24 am

Crash madExcept_.bpl

Post by MasterDi »

Hi, Madshi

When I close the app, an error occurs:
Problem Event Name: APPCRASH
Fault Module Name: madExcept_.bpl_unloaded
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 5c00272f
How to understand why?
madshi
Site Admin
Posts: 10754
Joined: Sun Mar 21, 2004 5:25 pm

Re: Crash madExcept_.bpl

Post by madshi »

It's hard to say without having a lot more information.

Is it possible that your application has secondary threads running which aren't fully closed yet when your application closes? That might produce an error like this. Please make sure that all your secondary threads have either run through or are "paused". For example, imagine a secondary thread tries to allocate some memory while the main thread has already finalizes the memory manager! Of course that would result in a crash.
Post Reply