Index: source/property/propertysethelper.cxx =================================================================== RCS file: /cvs/util/unotools/source/property/propertysethelper.cxx,v retrieving revision 1.4 diff -u -r1.4 propertysethelper.cxx --- source/property/propertysethelper.cxx 17 Sep 2006 01:28:32 -0000 1.4 +++ source/property/propertysethelper.cxx 2 Jul 2007 14:51:44 -0000 @@ -171,7 +171,7 @@ if( !bUnknown ) _setPropertyValues( (const PropertyMapEntry**)pEntries, aValues.getConstArray() ); - delete pEntries; + delete [] pEntries; if( bUnknown ) throw UnknownPropertyException(); @@ -199,7 +199,7 @@ if( !bUnknown ) _getPropertyValues( (const PropertyMapEntry**)pEntries, aValues.getArray() ); - delete pEntries; + delete [] pEntries; if( bUnknown ) throw UnknownPropertyException(); @@ -266,7 +266,7 @@ if( !bUnknown ) _getPropertyStates( (const PropertyMapEntry**)pEntries, aStates.getArray() ); - delete pEntries; + delete [] pEntries; if( bUnknown ) throw UnknownPropertyException();