Re: [C++] release problem with XMLch object

2004-01-12 Thread Berin Lautenbach
GRU Samuel wrote: Yes, i have a VC7 project files. I ll send it in your personal mail, if you want ? Please! (If you don't mind me plagiarising them :>). Cheers, Berin

Re: [C++] release problem with XMLch object

2004-01-12 Thread GRU Samuel
Berin Lautenbach a écrit : GRU Samuel wrote: Scott Cantor a écrit : I think it is a memory overwrite. Thinks for your answer. I had replace all delete[] with XMLString::release. Ouch. Did you do that in the library? I agree with Scott - it should be replaced within the library. I will lo

Re: [C++] release problem with XMLch object

2004-01-12 Thread Berin Lautenbach
GRU Samuel wrote: Scott Cantor a écrit : I think it is a memory overwrite. Thinks for your answer. I had replace all delete[] with XMLString::release. Ouch. Did you do that in the library? I agree with Scott - it should be replaced within the library. I will look to do so. However, just out

Re: [C++] release problem with XMLch object

2004-01-06 Thread GRU Samuel
Scott Cantor a écrit : For example, in the destructor of DSIGSignature, we have : delete[] mp_ecPrefixNS; It generates a bug . Just curious, what did it do? I think it is a memory overwrite. Thinks for your answer. I had replace all delete[] with XMLString::release.

RE: [C++] release problem with XMLch object

2004-01-06 Thread Scott Cantor
> For example, in the destructor of DSIGSignature, we have : delete[] > mp_ecPrefixNS; > It generates a bug . Just curious, what did it do? > if i replace with the code : XMLString::release(&mp_ecPrefixNS); > i haven't got the problem. > > Have you got an idea ? did i have bad compilation