diff options
-rw-r--r-- | vcl/workben/olefuzzer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/workben/olefuzzer.cxx b/vcl/workben/olefuzzer.cxx index b77a70b46c93..ec0d79bfb2ab 100644 --- a/vcl/workben/olefuzzer.cxx +++ b/vcl/workben/olefuzzer.cxx @@ -49,10 +49,10 @@ void traverse(const tools::SvRef<SotStorage>& rStorage, std::vector<unsigned cha void TestImportOLE2(SvStream &rStream, size_t nSize) { - tools::SvRef<SotStorage> xRootStorage(new SotStorage(&rStream, false)); - std::vector<unsigned char> aTmpBuf(nSize); try { + tools::SvRef<SotStorage> xRootStorage(new SotStorage(&rStream, false)); + std::vector<unsigned char> aTmpBuf(nSize); traverse(xRootStorage, aTmpBuf); } catch (...) |