diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-06-14 22:35:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-15 09:15:47 +0200 |
commit | 8ce99faaf6714748b0d9912fb7d60f19e1b7d399 (patch) | |
tree | ab4fd487643a7248f87eab237cb41315d460e228 /l10ntools | |
parent | 38cf1f1535db403acc5c392c10bec50de6d994ba (diff) |
Don't return too early, clean vars first (l10ntools/treemerge)
Change-Id: Ib99e0897fa36bdd0c8d805e38e77c3d626c0569a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96302
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/treemerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/treemerge.cxx b/l10ntools/source/treemerge.cxx index b430575bb693..933edb79fad1 100644 --- a/l10ntools/source/treemerge.cxx +++ b/l10ntools/source/treemerge.cxx @@ -131,7 +131,7 @@ namespace std::cerr << "Treex error: Cannot find title in " << sXhpPath << std::endl; - return nullptr; + pReturn = nullptr; } xmlFreeDoc( pXhpFile ); xmlCleanupParser(); |