diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-04-12 13:15:12 +0200 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-04-12 13:15:12 +0200 |
commit | 61e685d3e8e68b37294c6b853342a39c54cd85d9 (patch) | |
tree | 5f5ee9c9bab49f213adb4f7d990910b7af947fe0 | |
parent | 5d5e24f5bc71d413f051746063573a72db65ab7d (diff) |
slidecopy: proper deletion of 'argv[iXhp + 3]', will cause assertions otherwise, which break the build in instsetoo_native
-rw-r--r-- | l10ntools/source/help/HelpLinker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/help/HelpLinker.cxx b/l10ntools/source/help/HelpLinker.cxx index ae2b88bfc470..9eed9132a5ec 100644 --- a/l10ntools/source/help/HelpLinker.cxx +++ b/l10ntools/source/help/HelpLinker.cxx @@ -1096,7 +1096,7 @@ HELPLINKER_DLLPUBLIC bool compileExtensionHelp args.push_back(std::string( argv[i]) ); for( sal_Int32 iXhp = 0 ; iXhp < nXhpFileCount ; ++iXhp ) - delete argv[iXhp + 3]; + delete[] argv[iXhp + 3]; delete[] argv; rtl::OString aOExtensionLanguageRoot = rtl::OUStringToOString( aExtensionLanguageRoot, fs::getThreadTextEncoding() ); |