danieleteti / delphistompclient

STOMP client for Embarcadero Delphi and FreePascal.
141 stars 64 forks source link

Memory Leak in TStompHeaders #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
TStompHeaders stores TKeyValue records in a TList by a pointer to a New'd
memory. The memory is free'd with FreeMem which actually deletes the
string references of the TKeyValue record, but not the strings. I verified
this problem with AQTime. 

Original issue reported on code.google.com by daniele....@gmail.com on 14 Apr 2011 at 9:10