[Libreoffice-commits] core.git: sw/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Fri Aug 24 12:31:06 UTC 2018
sw/source/filter/ww8/wrtww8.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 8114f976b897c4717368146a49d5404ef970c77a
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Aug 24 12:04:42 2018 +0100
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri Aug 24 14:30:38 2018 +0200
coverity#1438527 Nesting level does not match indentation
Change-Id: I0b36a0fdb1c284ab8510740d10d9fc0202c71e44
Reviewed-on: https://gerrit.libreoffice.org/59554
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
Tested-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 1cea99be077f..3541c4711bd3 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3378,11 +3378,12 @@ ErrCode WW8Export::ExportDocument_Impl()
pTableStrmTemp = xTableStrm.get();
pDataStrmTemp = xDataStrm.get();
- if ( pDataStrmTemp && pDataStrmTemp != pStrmTemp)
+ if ( pDataStrmTemp && pDataStrmTemp != pStrmTemp) {
err = EncryptRC4(aCtx, *pDataStrm, *pDataStrmTemp);
if (err != ERRCODE_NONE) {
goto done;
}
+ }
err = EncryptRC4(aCtx, *pTableStrm, *pTableStrmTemp);
if (err != ERRCODE_NONE) {
More information about the Libreoffice-commits
mailing list