summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-20 12:32:24 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-21 07:35:00 +0100
commit1b8807c3ca3c1448e664d10286e07687f7ac0d9a (patch)
treec257a23eec33a1b3ae510caa1423f90bcdaeacf0 /shell
parent18339e9eb6fed96c3b4e6a566109b1988b901311 (diff)
loplugin:subtlezeroinit: shell
Change-Id: Ie8bb360a92f11e7bbf57633c702c2c496f6ff9cc
Diffstat (limited to 'shell')
-rw-r--r--shell/source/tools/lngconvex/lngconvex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/tools/lngconvex/lngconvex.cxx b/shell/source/tools/lngconvex/lngconvex.cxx
index c1b03c8f6f60..95482c34d70a 100644
--- a/shell/source/tools/lngconvex/lngconvex.cxx
+++ b/shell/source/tools/lngconvex/lngconvex.cxx
@@ -265,7 +265,7 @@ private:
if (iso_lang_replacement_table_.end() == iter)
{
- prt = new replacement_table_t();
+ prt = new replacement_table_t;
iso_lang_replacement_table_.insert(std::make_pair(iso_lang, prt));
}
else