diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 14:51:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-20 09:31:11 +0200 |
commit | cd210280162a52574f0d72f13e2a8e9fc922a5b9 (patch) | |
tree | 09f943029549717d8574c2ebdcc4a15ff0b86d87 /l10ntools | |
parent | 5212847db843396ff87eb3b29eade19db1e883a2 (diff) |
cid#1038312 Dereference before null check
Change-Id: I280d9382a47c0a934f5b1cd79eead59f9a50e52e
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/helpmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 41bcf93b62cf..12a71c8133e9 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -255,7 +255,7 @@ void HelpParser::ProcessHelp( LangHashMap* aLangHM , const OString& sCur , ResDa aLangHM->erase( sCur ); } } - else if( pResData ) + else { SAL_WARN( "l10ntools", |