Bugzilla – Bug 443537
inkscape-0.46-62.21: 3 * call to wrong C++ delete
Last modified: 2009-01-21 10:50:42 UTC
I just checked some of the source code in the Suse Linux factory package inkscape-0.46-62.21 and I noticed the following $ egrep "new|delete" ../BUILD/inkscape-0.46/src/dom/domstring.cpp delete cstring; delete cstring; delete cstring; cstring = new char[length+1]; The three calls to delete seem to be wrong. Suggest new code delete [] cstring; cstring = NULL;
Forwarded: https://bugs.launchpad.net/inkscape/+bug/319550