diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-10-22 16:30:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-10-22 21:55:14 +0200 |
commit | 8cf0b56f1fbca36c86d499e5473c242041ba5183 (patch) | |
tree | 0454d7e51e96aa449ff02fd0f0419580fc60f61d /idl/source | |
parent | 7f44b106cf8876fdd56d4afdb656f652bffceaee (diff) |
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/source')
-rw-r--r-- | idl/source/prj/svidl.cxx | 4 |
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; |