Re: [twsocket] Memory leak in ICS Client socket

2011-07-01 Thread daniel cc
Thanks :) I will check it out. -daniel -Original Message- From: Francois PIETTE Sent: Friday, July 01, 2011 11:47 AM To: ICS support mailing Subject: Re: [twsocket] Memory leak in ICS Client socket I am using TSSLWSocket and I would like to know why I get memory leak error while

Re: [twsocket] Memory leak in ICS Client socket

2011-07-01 Thread Wilfried Mestdagh
Hi > RecStream := TMemoryStream.Create; If you have a memory leak in this code fragment then you probably forgot to free the stream. -- mvg, Wilfried http://www.mestdagh.biz http://www.comfortsoftware.be http://www.expertsoftware.be -- To unsubscribe or change your settings for TWSocket maili

Re: [twsocket] Memory leak in ICS Client socket

2011-07-01 Thread Francois PIETTE
I am using TSSLWSocket and I would like to know why I get memory leak error while using the following at the “OnFormCreate”, RecStream := TMemoryStream.Create; Any ideas about what am I doin wrong? At first, this is not related to ICS: If you create a memory stream or any other object, then

[twsocket] Memory leak in ICS Client socket

2011-07-01 Thread daniel cc
Hi, I am using TSSLWSocket and I would like to know why I get memory leak error while using the following at the “OnFormCreate”, RecStream := TMemoryStream.Create; Any ideas about what am I doin wrong? thanks -- To unsubscribe or change your settings for TWSocket mailing list please goto http:/

[twsocket] Memory leak on import Windows certificates with Pemtool

2009-10-18 Thread Arno Garrels
Hi, just for the record, I found an ugly memory leak in the PemTool. Will fix it soon however here's a workaround: The following call converts a Windows DER formated certificate to an OpenSSL X509 structure: f_d2i_X509(nil, @pCertContext.pbCertEncoded, pCertContext.cbCertEncoded); Instead of a

Re: [twsocket] Memory leak...

2008-01-07 Thread zayin
ubject: RE: [twsocket] Memory leak... Sorry, I have not seen a reply! Where is the archive? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fastream Technologies Sent: Monday, January 07, 2008 8:44 AM To: ICS support mailing Subject: Re: [twsocket] M

Re: [twsocket] Memory leak...

2008-01-07 Thread zayin
Sorry, I have not seen a reply! Where is the archive? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fastream Technologies Sent: Monday, January 07, 2008 8:44 AM To: ICS support mailing Subject: Re: [twsocket] Memory leak... Wifried had already

Re: [twsocket] Memory leak...

2008-01-07 Thread Fastream Technologies
Wifried had already replied to your initial message! SZ On 1/7/08, zayin <[EMAIL PROTECTED]> wrote: > > > Hello, > > tcpPort: TWSocket; > > tcpPort.Connect > > AQTime is reporting a memory leak after I call connect. > > Has anyone run into this issue? > > D2007 SP3 XP Pro SP3 > > 5.25 is in the

[twsocket] Memory leak...

2008-01-07 Thread zayin
Hello, tcpPort: TWSocket; tcpPort.Connect AQTime is reporting a memory leak after I call connect. Has anyone run into this issue? D2007 SP3 XP Pro SP3 5.25 is in the WSocket file. Ciao, Mark -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.eli

Re: [twsocket] Memory Leak in SmtpProt

2007-02-14 Thread Arno Garrels
Veit Zimmermann wrote: > Arno, > > That might be true. By the way: Wouldn't the following be sufficient? > It should be much faster: > > if FMailMessage.Count > 0 then Yes, please have a look at latest SmtpProt.pas, FMailMsg.Text is now copied once to a string variable named FMailMsgText. M

Re: [twsocket] Memory Leak in SmtpProt

2007-02-14 Thread Veit Zimmermann
Arno, That might be true. By the way: Wouldn't the following be sufficient? It should be much faster: if FMailMessage.Count > 0 then When will the next beta come out? Is there a time line? I know Francois is busy. Is he controlling releases alone or are others (like you) helping him on this

Re: [twsocket] Memory Leak in SmtpProt

2007-02-14 Thread Arno Garrels
Veit, You are not using latest Beta downloads. --- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html Veit Zimmermann wrote: > Hi > > It seems that there is a memory leak in SmtpProt: > When sending an email and using MailMessage for including the > text of the mail, the t

[twsocket] Memory Leak in SmtpProt

2007-02-13 Thread Veit Zimmermann
Hi It seems that there is a memory leak in SmtpProt: When sending an email and using MailMessage for including the text of the mail, the text is compared with an empty string with the GetText method of TStrings. This method creates a copy of the MailMessage TStrings which is not freed again: