summaryrefslogtreecommitdiffstats
path: root/registry/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-31 15:40:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-12 08:43:48 +0200
commite4e4d5713e248f02faf7aa6199b11e152973de8e (patch)
tree836dffa89d0a966e41b1af8270db74b9590def22 /registry/source
parentpass comphelper::PropertySetInfo around using rtl::Reference (diff)
downloadcore-e4e4d5713e248f02faf7aa6199b11e152973de8e.tar.gz
core-e4e4d5713e248f02faf7aa6199b11e152973de8e.zip
clang-tidy readability-delete-null-pointer
which in turn triggered some loplugin:useuniqueptr Change-Id: I0c38561fc9b68dac44e8cf58c8aa1f582196cc64 Reviewed-on: https://gerrit.libreoffice.org/38281 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'registry/source')
-rw-r--r--registry/source/reflwrit.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/registry/source/reflwrit.cxx b/registry/source/reflwrit.cxx
index ced57265ddd9..747855850632 100644
--- a/registry/source/reflwrit.cxx
+++ b/registry/source/reflwrit.cxx
@@ -702,8 +702,7 @@ TypeWriter::TypeWriter(typereg_Version version,
TypeWriter::~TypeWriter()
{
- if (m_superTypeNames)
- delete[] m_superTypeNames;
+ delete[] m_superTypeNames;
if (m_fieldCount)
delete[] m_fields;
@@ -714,8 +713,7 @@ TypeWriter::~TypeWriter()
if (m_referenceCount)
delete[] m_references;
- if (m_pUik)
- delete m_pUik;
+ delete m_pUik;
}
void TypeWriter::setSuperType(sal_uInt16 index, OString const & name)