Bug 66425: Avoid a ClassCastException found via oss-fuzz

Fix previous changes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911522 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2023-08-07 19:59:04 +00:00
parent ac9da84c86
commit f3997b49ef

View File

@ -58,6 +58,9 @@ public abstract class BaseTestPPTIterating {
));
static final Map<String,Class<? extends Throwable>> EXCLUDED = new HashMap<>();
static {
EXCLUDED.put("clusterfuzz-testcase-minimized-POIHSLFFuzzer-6416153805979648.ppt", Exception.class);
}
public static Stream<Arguments> files() {
String dataDirName = System.getProperty(POIDataSamples.TEST_PROPERTY);