summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-21 12:14:19 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-21 16:13:12 +0000
commit5a47be272727d3d300b4dcdc707375f24fb919eb (patch)
tree2e7da23252f4619fab063d0f1eef6c2c5a6c26d9 /sw
parente17187c323428b7edea425278ea33bca77db12b5 (diff)
don't hang on busted subdocument offsets
Change-Id: I5d1d18f864496ec98894703f0a22e211a9dd14a5 (cherry picked from commit a2b90cd04733c2ec3b9cb3bb56d95f3298571ecc) Reviewed-on: https://gerrit.libreoffice.org/18747 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/core/data/ww8/pass/hang-9.docbin0 -> 18944 bytes
-rw-r--r--sw/source/filter/ww8/ww8scan.cxx12
2 files changed, 8 insertions, 4 deletions
diff --git a/sw/qa/core/data/ww8/pass/hang-9.doc b/sw/qa/core/data/ww8/pass/hang-9.doc
new file mode 100644
index 000000000000..4e9e4120f4d7
--- /dev/null
+++ b/sw/qa/core/data/ww8/pass/hang-9.doc
Binary files differ
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index 867a0e70f9fa..109a3c29b08d 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -4450,11 +4450,15 @@ void WW8PLCFxDesc::ReduceByOffset()
else
nStartPos -= nCpOfs;
}
- if( nEndPos != WW8_CP_MAX )
+ if (nEndPos != WW8_CP_MAX)
{
- OSL_ENSURE(nCpOfs <= nEndPos,
- "oh oh, so much for the subdocument piece theory");
- nEndPos -= nCpOfs;
+ if (nCpOfs > nEndPos)
+ {
+ SAL_WARN("sw.ww8", "broken subdocument piece entry");
+ nEndPos = WW8_CP_MAX;
+ }
+ else
+ nEndPos -= nCpOfs;
}
}