Question : memory leak report ANSISTRING

fast mm4 reports for my application a memory leak with ansistring class, I never use any ansi string inside my application, where does this leak come from ?

How to fight back ?
Attachments:
 
ansi string memory leak
ansi string memory leak
 

Answer : memory leak report ANSISTRING

an AnsiString is the full qualified name of a standard 8bit per Char string, and equals String in all Delphi versions <2009. After that, String is considered Unicode (16bit per char) string, or WideString.

So you have lots of places where you can have AnsiString without you knowing it

By the look of your message, you probably don't free one form containing all the above
Random Solutions  
 
programming4us programming4us