<changes>
<release version="3.8-beta6" date="2012-??-??">
+ <action dev="poi-developers" type="fix">52664 - MAPIMessage may not always have name chunks when checking for 7 bit encodings</action>
<action dev="poi-developers" type="fix">52649 - fixed namespace issue in WordToFoConverter</action>
<action dev="poi-developers" type="fix">52385 - avoid trancated array and vector data when reading OLE properties</action>
<action dev="poi-developers" type="fix">52662 - CharacterRun NPE fix when fetching symbol fonts, where no fonts are defined</action>
}
}
}
- for(Chunk c : nameIdChunks.getAll()) {
- if(c instanceof StringChunk) {
- if( ((StringChunk)c).getType() == Types.ASCII_STRING ) {
- return true;
+
+ if (nameIdChunks!=null) {
+ for(Chunk c : nameIdChunks.getAll()) {
+ if(c instanceof StringChunk) {
+ if( ((StringChunk)c).getType() == Types.ASCII_STRING ) {
+ return true;
+ }
}
}
}
+
for(RecipientChunks rc : recipientChunks) {
for(Chunk c : rc.getAll()) {
if(c instanceof StringChunk) {