Professional OPC
Development Tools

logos

Online Forums

Technical support is provided through Support Forums below. Anybody can view them; you need to Register/Login to our site (see links in upper right corner) in order to Post questions. You do not have to be a licensed user of our product.

Please read Rules for forum posts before reporting your issue or asking a question. OPC Labs team is actively monitoring the forums, and replies as soon as possible. Various technical information can also be found in our Knowledge Base. For your convenience, we have also assembled a Frequently Asked Questions page.

Do not use the Contact page for technical issues.

Memory Leak in Delphi

More
01 Aug 2017 11:18 #5396 by support
Replied by support on topic Memory Leak in Delphi
Hello.

If I understand you well, the bug is in the classes that Delphi generates from the type libraries.

We cannot influence that, and they are not part of the product API. You need to fix it there, or it has to be fixed in the Delphi type library importer.

Regards

Please Log in or Create an account to join the conversation.

More
01 Aug 2017 08:17 #5395 by alr1976
Hi!

I have a memory leak when create
client := TEasyUAClient.Create(self);
and free:

client.free or freeandnil(client) or client.dispose;

try this simple app in debug:

ReportMemoryLeaksOnShutdown := DebugHook <> 0;
client := TEasyUAClient.Create(self);
client.free;

you will have memory leak dialog because tservereventdispatch doesn t dealloc memory. so for each teasyuaclient will have new tservereventdispatch

Please Log in or Create an account to join the conversation.

Moderators: support
Time to create page: 0.050 seconds