summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/workben/olefuzzer.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/vcl/workben/olefuzzer.cxx b/vcl/workben/olefuzzer.cxx
index 349e27ecd28b..b77a70b46c93 100644
--- a/vcl/workben/olefuzzer.cxx
+++ b/vcl/workben/olefuzzer.cxx
@@ -51,7 +51,13 @@ void TestImportOLE2(SvStream &rStream, size_t nSize)
{
tools::SvRef<SotStorage> xRootStorage(new SotStorage(&rStream, false));
std::vector<unsigned char> aTmpBuf(nSize);
- traverse(xRootStorage, aTmpBuf);
+ try
+ {
+ traverse(xRootStorage, aTmpBuf);
+ }
+ catch (...)
+ {
+ }
}
}