diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/FontCollection.java b/src/scratchpad/src/org/apache/poi/hslf/record/FontCollection.java index d11ba429e49..dbc93d404a3 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/FontCollection.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/FontCollection.java @@ -38,13 +38,17 @@ protected FontCollection(byte[] source, int start, int len) { System.arraycopy(source,start,_header,0,8); _children = Record.findChildRecords(source,start+8,len-8); - // Save font names into List - fonts = new ArrayList(); - for (int i = 0; i < _children.length; i++){ - FontEntityAtom atom = (FontEntityAtom)_children[i]; - fonts.add(atom.getFontName()); - } + // Save font names into List + fonts = new ArrayList(); + for (int i = 0; i < _children.length; i++){ + if(_children[i] instanceof FontEntityAtom) { + FontEntityAtom atom = (FontEntityAtom)_children[i]; + fonts.add(atom.getFontName()); + } else { + System.err.println("Warning: FontCollection child wasn't a FontEntityAtom, was " + _children[i]); + } + } } /**