> -----Original Message-----
> From: Pavel Tsekov [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, March 23, 2002 11:03 AM
> strcpy (dp, dots);
> delete[] dots;
> key = String (dp);
>
> LOOK HERE - This is not right - we should delete at the base
> of the block, not somewhere in the middle of it.
> delete[] dp;
>
> We can do something like that
> char *dp = ....
> char *dp_save = dp;
>
> ....
>
> delete[] dp_save;
Huh? delete[]dp; is the last reference to dp. delete[]dots; is the last
reference to dots. Whats the problem?
Rob
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/