summaryrefslogtreecommitdiffstats
path: root/idl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-22 16:30:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-10-22 21:55:14 +0200
commit8cf0b56f1fbca36c86d499e5473c242041ba5183 (patch)
tree0454d7e51e96aa449ff02fd0f0419580fc60f61d /idl
parentsimpler to use a vector (diff)
downloadcore-8cf0b56f1fbca36c86d499e5473c242041ba5183.tar.gz
core-8cf0b56f1fbca36c86d499e5473c242041ba5183.zip
pvs-studio: V560 A part of conditional expression is always true
Change-Id: Iff61dda72f304c335a1ac6d6b56e5fce2644ee81 Reviewed-on: https://gerrit.libreoffice.org/62191 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'idl')
-rw-r--r--idl/source/prj/svidl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/prj/svidl.cxx b/idl/source/prj/svidl.cxx
index 3926e47c2d43..d76b16a66835 100644
--- a/idl/source/prj/svidl.cxx
+++ b/idl/source/prj/svidl.cxx
@@ -161,9 +161,9 @@ int main ( int argc, char ** argv)
bool bErr = false;
bool bDoMove = aCommand.aTargetFile.isEmpty();
OUString aErrFile, aErrFile2;
- if( !bErr && !aCommand.aSlotMapFile.isEmpty() )
+ if (!aCommand.aSlotMapFile.isEmpty())
{
- bErr |= !FileMove_Impl( aCommand.aSlotMapFile, aTmpSlotMapFile, bDoMove );
+ bErr = !FileMove_Impl( aCommand.aSlotMapFile, aTmpSlotMapFile, bDoMove );
if( bErr ) {
aErrFile = aCommand.aSlotMapFile;
aErrFile2 = aTmpSlotMapFile;