[Ohrrpgce] SVN: pkmnfrk/2319 Fixed the memory corruption bug.

2008-10-02 Thread subversion
pkmnfrk 2008-10-02 17:38:09 -0700 (Thu, 02 Oct 2008) 248 Fixed the memory corruption bug. For the record, this doesn't work: foo = new Bar(oldBar) Instead, do this: foo = new Bar *foo = oldBar (That I am the only one to write this syntax, and even then only once in experimental code, is

Re: [Ohrrpgce] SVN: pkmnfrk/2319 Fixed the memory corruption bug.

2008-10-02 Thread James Paige
On Thu, Oct 02, 2008 at 05:38:09PM -0700, [EMAIL PROTECTED] wrote: pkmnfrk 2008-10-02 17:38:09 -0700 (Thu, 02 Oct 2008) 248 Fixed the memory corruption bug. For the record, this doesn't work: foo = new Bar(oldBar) Instead, do this: foo = new Bar *foo = oldBar (That I am the

Re: [Ohrrpgce] SVN: pkmnfrk/2319 Fixed the memory corruption bug.

2008-10-02 Thread Mike Caron
James Paige wrote: On Thu, Oct 02, 2008 at 05:38:09PM -0700, [EMAIL PROTECTED] wrote: pkmnfrk 2008-10-02 17:38:09 -0700 (Thu, 02 Oct 2008) 248 Fixed the memory corruption bug. For the record, this doesn't work: foo = new Bar(oldBar) Instead, do this: foo = new Bar *foo = oldBar (That I am

Re: [Ohrrpgce] SVN: pkmnfrk/2319 Fixed the memory corruption bug.

2008-10-02 Thread James Paige
On Thu, Oct 02, 2008 at 09:42:42PM -0400, Mike Caron wrote: James Paige wrote: On Thu, Oct 02, 2008 at 05:38:09PM -0700, [EMAIL PROTECTED] wrote: pkmnfrk 2008-10-02 17:38:09 -0700 (Thu, 02 Oct 2008) 248 Fixed the memory corruption bug. For the record, this doesn't work: foo = new