On Thursday 23 January 2003 9:40 am, Ryan Butler wrote:
> Also on the pop3 server sig 11'ing, there is a double free going on on
> an apop string, I commented out one of the my_free() 's and it quit
> segfaulting.
>
> The double my_free is in pop3_handle_client:
>
> /* memory cleanup */
> my_free(buffer);
> my_free(apop_stamp);
> buffer = NULL;
> my_free(apop_stamp);
> apop_stamp = NULL;
>

Which one did you remove?  Or does it make a difference?

By the way, the double free is still in CVS.  Though mine looks like this:
/* memory cleanup */
  my_free(buffer);
  buffer = NULL;
  my_free(apop_stamp);
  apop_stamp = NULL;

Thanks.


-- 
Bret Baptist
Systems and Technical Support Specialist
[EMAIL PROTECTED]
Internet Exposure, Inc.
http://www.iexposure.com
 
(612)676-1946 x17
Web Development-Web Marketing-ISP Services
------------------------------------------


Today is the tomorrow you worried about yesterday.

Reply via email to