Kaydet (Commit) 7cf3f4d1 authored tarafından Caolán McNamara's avatar Caolán McNamara

ofz#891 an exception is an acceptable outcome

Change-Id: Ia5939b81f6bc2d44a4966266a91ed14d4fafad2f
üst 4436bef0
...@@ -51,7 +51,13 @@ void TestImportOLE2(SvStream &rStream, size_t nSize) ...@@ -51,7 +51,13 @@ void TestImportOLE2(SvStream &rStream, size_t nSize)
{ {
tools::SvRef<SotStorage> xRootStorage(new SotStorage(&rStream, false)); tools::SvRef<SotStorage> xRootStorage(new SotStorage(&rStream, false));
std::vector<unsigned char> aTmpBuf(nSize); std::vector<unsigned char> aTmpBuf(nSize);
traverse(xRootStorage, aTmpBuf); try
{
traverse(xRootStorage, aTmpBuf);
}
catch (...)
{
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment